9 lines
285 B
Ruby
9 lines
285 B
Ruby
class AddPhase1FieldsToVideos < ActiveRecord::Migration[8.1]
|
|
def change
|
|
add_column :videos, :filename, :string
|
|
add_column :videos, :transcoded_path, :string
|
|
add_column :videos, :transcoded_permanently, :boolean
|
|
add_column :videos, :web_compatible, :boolean
|
|
end
|
|
end
|