20180616192031_add_chosen_languages_to_users.rb 175 B

12345
  1. class AddChosenLanguagesToUsers < ActiveRecord::Migration[5.2]
  2. def change
  3. add_column :users, :chosen_languages, :string, array: true, null: true, default: nil
  4. end
  5. end