summaryrefslogtreecommitdiff
path: root/db/migrate/20190211131150_add_state_id_to_issuables.rb
blob: b9d52fe63cdd16ee45164a3fd2cba15511ff05c3 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class AddStateIdToIssuables < ActiveRecord::Migration[5.0]
  include Gitlab::Database::MigrationHelpers
  #include AfterCommitQueue

  DOWNTIME = false
  MIGRATION = 'SyncIssuablesStateId'.freeze

  # TODO - find out how many issues and merge requests in production
  # to adapt the batch size and delay interval
  # Keep in mind that the migration will be scheduled for issues and merge requests.
  BATCH_SIZE = 5000
  DELAY_INTERVAL = 5.minutes.to_i

  class Issue < ActiveRecord::Base
    include EachBatch

    self.table_name = 'issues'
  end

  class MergeRequest < ActiveRecord::Base
    include EachBatch

    self.table_name = 'merge_requests'
  end

  def up
    add_column :issues, :state_id, :integer, limit: 1
    add_column :merge_requests, :state_id, :integer, limit: 1

    # Is this safe?
    # Added to avoid an warning about jobs running inside transactions.
    # Since we only add a column this should be ok
    Sidekiq::Worker.skipping_transaction_check do
      queue_background_migration_jobs_by_range_at_intervals(Issue.where(state_id: nil), MIGRATION, DELAY_INTERVAL, batch_size: BATCH_SIZE)
      queue_background_migration_jobs_by_range_at_intervals(MergeRequest.where(state_id: nil), MIGRATION, DELAY_INTERVAL, batch_size: BATCH_SIZE)
    end
  end

  def down
    remove_column :issues, :state_id
    remove_column :merge_requests, :state_id
  end
end