summaryrefslogtreecommitdiff
path: root/db/migrate/20180216120050_pages_domains_verification_grace_period.rb
blob: e51cff68b50049d75316de8bf536e699bd3c54a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class PagesDomainsVerificationGracePeriod < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  class PagesDomain < ActiveRecord::Base
    include EachBatch
  end

  # Allow this migration to resume if it fails partway through
  disable_ddl_transaction!

  def up
    now = Time.now
    grace = now + 30.days

    PagesDomain.each_batch do |relation|
      relation.update_all(verified_at: now, enabled_until: grace)

      # Sleep 2 minutes between batches to not overload the DB with dead tuples
      sleep(2.minutes) unless relation.reorder(:id).last == PagesDomain.reorder(:id).last
    end
  end

  def down
    # no-op
  end
end