summaryrefslogtreecommitdiff
path: root/db/migrate/20221225010103_create_workspaces_project_foreign_key.rb
blob: fe2b6eec2e01edee81584aba3aa7e4d4aa5b0351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class CreateWorkspacesProjectForeignKey < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  def up
    # NOTE: All workspace foreign key references are currently `on_delete: :cascade`, because we have no support or
    #       testing around null values. However, in the future we may want to switch these to nullify, especially
    #       once we start introducing logging, metrics, billing, etc. around workspaces.
    add_concurrent_foreign_key :workspaces, :projects, column: :project_id, on_delete: :cascade
  end

  def down
    with_lock_retries do
      remove_foreign_key :workspaces, column: :project_id
    end
  end
end