mirror of https://github.com/Siphonay/mastodon
17 lines
416 B
Ruby
17 lines
416 B
Ruby
|
class MigrateUnavailableInboxes < ActiveRecord::Migration[5.2]
|
||
|
disable_ddl_transaction!
|
||
|
|
||
|
def up
|
||
|
urls = Redis.current.smembers('unavailable_inboxes')
|
||
|
|
||
|
urls.each do |url|
|
||
|
host = Addressable::URI.parse(url).normalized_host
|
||
|
UnavailableDomain.create(domain: host)
|
||
|
end
|
||
|
|
||
|
Redis.current.del(*(['unavailable_inboxes'] + Redis.current.keys('exhausted_deliveries:*')))
|
||
|
end
|
||
|
|
||
|
def down; end
|
||
|
end
|