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
416 B
17 lines
416 B
5 years ago
|
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
|