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

15 lines
283 B
Ruby

class CreateTimelineHistoryContents < ActiveRecord::Migration[6.0]
def change
create_table :timeline_history_contents do |t|
t.references :timeline_history, index: true
t.string :style
t.timestamps null: false
end
end
end