pollen_app/db/migrate/20160119224315_create_home_slider_slides.rb
Nicolas Bally d80a0b2d9a v2 site
2021-01-20 19:27:14 +01:00

16 lines
401 B
Ruby

class CreateHomeSliderSlides < ActiveRecord::Migration[6.0]
def change
create_table :home_slider_slides do |t|
t.references :home_slider, index: true
t.integer :position
t.datetime :start_at
t.datetime :end_at
t.references :image_file
t.boolean :enabled
t.timestamps null: false
end
add_foreign_key :home_slider_slides, :home_sliders
end
end