Sha256: ed6cec2cb5e95ef4a9859d57f2a6405f88903daa9109982d01c3ead07106991a
Contents?: true
Size: 272 Bytes
Versions: 19
Compression:
Stored size: 272 Bytes
Contents
class CreateNewVariants < ActiveRecord::Migration def up create_table :variants, :force => true do |t| t.integer :item_id, :null => false t.string :item_type, :null => false t.timestamps end end def down drop_table :variants end end
Version data entries
19 entries across 19 versions & 1 rubygems