debian-mirror-gitlab/db/migrate/20221225010104_create_workspaces_cluster_agent_foreign_key.rb
2023-07-09 08:55:56 +05:30

19 lines
700 B
Ruby

# frozen_string_literal: true
class CreateWorkspacesClusterAgentForeignKey < 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, :cluster_agents, column: :cluster_agent_id, on_delete: :cascade
end
def down
with_lock_retries do
remove_foreign_key :workspaces, column: :cluster_agent_id
end
end
end