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

6 lines
145 B
Ruby

class AddAnalysisStartedAtToVideos < ActiveRecord::Migration[5.2]
def change
add_column :videos, :analysis_started_at, :datetime
end
end