summaryrefslogtreecommitdiff
path: root/db/migrate/20171114150259_merge_requests_author_id_foreign_key.rb
blob: 021eaa04a0c6f38418eef02bf40c6ec3b6b3bb29 (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
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class MergeRequestsAuthorIdForeignKey < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  disable_ddl_transaction!

  class MergeRequest < ActiveRecord::Base
    include EachBatch

    self.table_name = 'merge_requests'

    def self.with_orphaned_authors
      where('NOT EXISTS (SELECT true FROM users WHERE merge_requests.author_id = users.id)')
        .where('author_id IS NOT NULL')
    end
  end

  def up
    # Replacing the ghost user ID logic would be too complex, hence we don't
    # redefine the User model here.
    ghost_id = User.select(:id).ghost.id

    MergeRequest.with_orphaned_authors.each_batch(of: 100) do |batch|
      batch.update_all(author_id: ghost_id)
    end

    add_concurrent_foreign_key(
      :merge_requests,
      :users,
      column: :author_id,
      on_delete: :nullify
    )
  end

  def down
    remove_foreign_key(:merge_requests, column: :author_id)
  end
end