Sha256: b138b6b9d2e93f5265662b32d96b537f522d300e4b1ed7550bd7a7e22a47622b
Contents?: true
Size: 225 Bytes
Versions: 4
Compression:
Stored size: 225 Bytes
Contents
class CreateProducts < ActiveRecord::Migration def self.up create_table :products do |t| t.string :name t.integer :price t.timestamps end end def self.down drop_table :products end end
Version data entries
4 entries across 3 versions & 1 rubygems