diff options
author | Fire Demon <firedemon@creature.cafe> | 2020-07-31 01:52:08 -0500 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-08-30 05:45:16 -0500 |
commit | a036e8561344866b072c2874906c9c9533cd27ea (patch) | |
tree | 4bfced891c9ece25baf5f2f644a4176d82b8b611 /db/migrate/20200731135033_backfill_account_metadata.rb | |
parent | a0ae00eeb5b89ccd23868e530608fbbc07349a7e (diff) |
[Feature] Add general-purpose account metadata to backend
Diffstat (limited to 'db/migrate/20200731135033_backfill_account_metadata.rb')
-rw-r--r-- | db/migrate/20200731135033_backfill_account_metadata.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20200731135033_backfill_account_metadata.rb b/db/migrate/20200731135033_backfill_account_metadata.rb new file mode 100644 index 000000000..2ddfa6081 --- /dev/null +++ b/db/migrate/20200731135033_backfill_account_metadata.rb @@ -0,0 +1,11 @@ +class BackfillAccountMetadata < ActiveRecord::Migration[5.2] + def up + safety_assured do + execute("INSERT INTO account_metadata (account_id) SELECT id FROM accounts WHERE domain IS NULL OR domain = ''") + end + end + + def down + true + end +end |