20181226021420_add_also_known_as_to_accounts.rb 179 B

1234567
  1. # frozen_string_literal: true
  2. class AddAlsoKnownAsToAccounts < ActiveRecord::Migration[5.2]
  3. def change
  4. add_column :accounts, :also_known_as, :string, array: true
  5. end
  6. end