musifrat_app/db/migrate/20151206120204_create_timeline_contents.rb
Nicolas Bally a1aef72f7f intial
2019-02-03 15:12:58 +01:00

16 lines
431 B
Ruby

class CreateTimelineContents < ActiveRecord::Migration
def change
create_table :timeline_contents do |t|
t.references :image_file, index: true
t.string :title
t.integer :position
t.text :content
t.references :timeline_year, index: true
t.timestamps null: false
end
add_foreign_key :timeline_contents, :image_files
add_foreign_key :timeline_contents, :timeline_years
end
end