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

7 lines
204 B
Ruby

class AddLangsToVideoFiles < ActiveRecord::Migration[6.0]
def change
add_column :video_files, :fr, :boolean, :default => true
add_column :video_files, :en, :boolean, :default => false
end
end