payrejardi_app/db/migrate/20161121090344_add_langs_to_video_files.rb
Nicolas Bally 3233232f4e initial
2019-02-01 12:07:55 +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