diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-10-27 18:54:26 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2018-10-27 18:54:26 +0200 |
commit | c13cfeac0952b112140d48a076d685730ff39b06 (patch) | |
tree | 304e82845e241ed35840e5e578dd496efb3f74a4 /db | |
parent | 5bb8563f6c0ec9021d6e70d85544147e6c2d0f44 (diff) | |
parent | eef8d9a5f7d07bf785c6a7184e01374e211c6d7f (diff) |
Merge branch 'master' into glitch-soc/merge-upstream
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20181026034033_remove_faux_remote_account_duplicates.rb | 16 | ||||
-rw-r--r-- | db/schema.rb | 2 |
2 files changed, 17 insertions, 1 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 diff --git a/db/schema.rb b/db/schema.rb index 01ab9c17b..9e718615f 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2018_10_24_224956) do +ActiveRecord::Schema.define(version: 2018_10_26_034033) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" |