Files
sx-fc/db/migrate/20180213053009_create_display_images.rb

15 lines
269 B
Ruby

class CreateDisplayImages < ActiveRecord::Migration[5.1]
def change
create_table :display_images do |t|
t.integer :shop_id
t.binary :image
t.string :created_by
t.timestamps
end
end
def down
drop_table :display_images
end
end