Sha256: f470a1d44504c1528388554b8472160879fc1dccc922bb061a50ceed1ae963ff
Contents?: true
Size: 229 Bytes
Versions: 14
Compression:
Stored size: 229 Bytes
Contents
class CreateProducts < ActiveRecord::Migration def self.up create_table :products do |t| t.string :name t.string :brand_name t.timestamps end end def self.down drop_table :products end end
Version data entries
14 entries across 14 versions & 1 rubygems