diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-01-10 18:46:17 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-01-10 18:46:17 +0100 |
commit | fb0c906c717f2b21bb63610742a357850142b522 (patch) | |
tree | 696e649bcf15c2a7926e2d6d5f9e08f90aaef058 /db/migrate | |
parent | d1da0a1086fa25f22739277fbf32ba1b3745317d (diff) |
Revert "Revert "Add handler for Move activity (#9629)""
This reverts commit bb96a7463758687f8187ae4483becd346c2482b3.
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20181226021420_add_also_known_as_to_accounts.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20181226021420_add_also_known_as_to_accounts.rb b/db/migrate/20181226021420_add_also_known_as_to_accounts.rb new file mode 100644 index 000000000..1fd956680 --- /dev/null +++ b/db/migrate/20181226021420_add_also_known_as_to_accounts.rb @@ -0,0 +1,5 @@ +class AddAlsoKnownAsToAccounts < ActiveRecord::Migration[5.2] + def change + add_column :accounts, :also_known_as, :string, array: true + end +end |