qi6_app/db/migrate/20180127215639_create_slide_contents.rb
2019-05-17 12:30:45 +02:00

11 lines
214 B
Ruby

class CreateSlideContents < ActiveRecord::Migration[6.0]
def change
create_table :slide_contents do |t|
t.references :home_slider
t.string :style
t.timestamps null: false
end
end
end