Sha256: fc89220151ceec6c55a4a81192b4f2416e516febb594d25f9e590c3e3941a555
Contents?: true
Size: 322 Bytes
Versions: 13
Compression:
Stored size: 322 Bytes
Contents
class CreateProducts < ActiveRecord::Migration def self.up create_table :products do |t| t.belongs_to :vendor t.integer :id t.string :title t.decimal :price t.boolean :active t.text :description t.timestamps end end def self.down drop_table :products end end
Version data entries
13 entries across 13 versions & 1 rubygems