You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
459 B
17 lines
459 B
6 years ago
|
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
|