Files
old-holivud2/db/migrate/20190613155257_create_graphics_elements_table.rb
2020-05-31 22:38:19 +02:00

12 lines
252 B
Ruby

class CreateGraphicsElementsTable < ActiveRecord::Migration[5.2]
def change
create_table :graphics_elements do |t|
t.references :video, foreign_key: true
t.text :text
t.string :time_elapsed
t.timestamps
end
end
end