diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-12-29 02:24:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-29 02:24:36 +0100 |
commit | 0f938ff29c2e9bf92e3eb9c23be8d4ba3a1b97f7 (patch) | |
tree | a7f9cb2672014b95f77f1a9fe802009f889574e0 /db/migrate | |
parent | 9b475a4838abc6143e26776816280e16abfc6193 (diff) |
Add handler for Move activity (#9629)
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 |