about summary refs log tree commit diff
path: root/db/migrate/20180616192031_add_chosen_languages_to_users.rb
blob: 48b53019d6d1b9d4bfe63a25f94682e5cd5372e0 (plain) (blame)
1
2
3
4
5
class AddChosenLanguagesToUsers < ActiveRecord::Migration[5.2]
  def change
    add_column :users, :chosen_languages, :string, array: true, null: true, default: nil
  end
end