about summary refs log tree commit diff
path: root/db/migrate/20181026034033_remove_faux_remote_account_duplicates.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20181026034033_remove_faux_remote_account_duplicates.rb')
-rw-r--r--db/migrate/20181026034033_remove_faux_remote_account_duplicates.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/db/migrate/20181026034033_remove_faux_remote_account_duplicates.rb b/db/migrate/20181026034033_remove_faux_remote_account_duplicates.rb
new file mode 100644
index 000000000..bd4f4c2a3
--- /dev/null
+++ b/db/migrate/20181026034033_remove_faux_remote_account_duplicates.rb
@@ -0,0 +1,16 @@
+class RemoveFauxRemoteAccountDuplicates < ActiveRecord::Migration[5.2]
+  disable_ddl_transaction!
+
+  def up
+    local_domain = Rails.configuration.x.local_domain
+
+    # Just a safety measure to ensure that under no circumstance
+    # we will query `domain IS NULL` because that would return
+    # actually local accounts, the originals
+    return if local_domain.nil?
+
+    Account.where(domain: local_domain).in_batches.destroy_all
+  end
+
+  def down; end
+end