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

20221024034228_remove_sprints_project_id_column.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e30d6dce4979bed7364897d59de619ec5fc39fd0 (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
# frozen_string_literal: true

class RemoveSprintsProjectIdColumn < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!

  DATERANGE_CONSTRAINT_NAME = 'iteration_start_and_due_daterange_project_id_constraint'

  def up
    with_lock_retries do
      remove_column :sprints, :project_id, :bigint if column_exists?(:sprints, :project_id)
    end
  end

  def down
    with_lock_retries do
      add_column :sprints, :project_id, :bigint unless column_exists?(:sprints, :project_id)
    end

    with_lock_retries do
      next if check_constraint_exists?(:sprints, DATERANGE_CONSTRAINT_NAME)

      execute(<<~SQL)
        ALTER TABLE sprints
        ADD CONSTRAINT #{DATERANGE_CONSTRAINT_NAME}
          EXCLUDE USING gist (project_id WITH =, daterange(start_date, due_date, '[]'::text) WITH &&)
          WHERE (project_id IS NOT NULL)
      SQL
    end

    add_check_constraint(:sprints,
      'project_id <> NULL::bigint AND group_id IS NULL OR group_id <> NULL::bigint AND project_id IS NULL',
      'sprints_must_belong_to_project_or_group')

    add_concurrent_index :sprints, [:project_id, :iid], unique: true, name: 'index_sprints_on_project_id_and_iid'

    add_concurrent_foreign_key :sprints, :projects, column: :project_id, on_delete: :cascade
  end
end