kaps_app/db/migrate/20161121090344_add_langs_to_video_files.rb
Nicolas Bally d60301e8a7 initial
2019-01-21 01:15:10 +01:00

7 lines
199 B
Ruby

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