6 lines
145 B
Ruby
6 lines
145 B
Ruby
class AddAnalysisStartedAtToVideos < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :videos, :analysis_started_at, :datetime
|
|
end
|
|
end
|