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

class CreateWorkspacesUserForeignKey < 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, :users, column: :user_id, on_delete: :cascade
  end

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