Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20171106135924_issues_milestone_id_foreign_key.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bfb3dcae511f44f328fa73b68fc8a80151bb802a (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
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

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

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

  disable_ddl_transaction!

  class Issue < ActiveRecord::Base
    include EachBatch

    self.table_name = 'issues'

    def self.with_orphaned_milestones
      where('NOT EXISTS (SELECT true FROM milestones WHERE milestones.id = issues.milestone_id)')
        .where('milestone_id IS NOT NULL')
    end
  end

  def up
    Issue.with_orphaned_milestones.each_batch(of: 100) do |batch|
      batch.update_all(milestone_id: nil)
    end

    add_concurrent_foreign_key(
      :issues,
      :milestones,
      column: :milestone_id,
      on_delete: :nullify
    )
  end

  def down
    remove_foreign_key_without_error(:issues, column: :milestone_id)
  end
end