mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-08-30 00:59:13 +00:00
9 lines
270 B
Ruby
9 lines
270 B
Ruby
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
|