payrejardi_app/db/migrate/20151206120204_create_timeline_contents.rb
Nicolas Bally 3233232f4e initial
2019-02-01 12:07:55 +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