summaryrefslogtreecommitdiff
path: root/db/post_migrate/20171005130944_schedule_create_gpg_key_subkeys_from_gpg_keys.rb
blob: 01d56fbd49090f66a76e96a30b43c4238dc371e4 (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
27
28
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class ScheduleCreateGpgKeySubkeysFromGpgKeys < ActiveRecord::Migration
  disable_ddl_transaction!

  DOWNTIME = false
  MIGRATION = 'CreateGpgKeySubkeysFromGpgKeys'

  class GpgKey < ActiveRecord::Base
    self.table_name = 'gpg_keys'

    include EachBatch
  end

  def up
    GpgKey.select(:id).each_batch do |gpg_keys|
      jobs = gpg_keys.pluck(:id).map do |id|
        [MIGRATION, [id]]
      end

      BackgroundMigrationWorker.perform_bulk(jobs)
    end
  end

  def down
  end
end