done brand

This commit is contained in:
Benjamin Myara
2018-08-31 10:17:26 +01:00
parent 25c6c3aeb5
commit 81ed01010c
11 changed files with 188 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
class AddColumnsToUsers < ActiveRecord::Migration[5.2]
def change
add_column :users, :language, :string
add_column :users, :caption_font, :string
add_column :users, :caption_font_size, :integer
add_column :users, :enable_transcript, :boolean
end
end