mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-20 16:46:17 +00:00
16 lines
360 B
Ruby
16 lines
360 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TrackAiActiveContextConnectionsDeletions < Gitlab::Database::Migration[2.3]
|
|
include Gitlab::Database::MigrationHelpers::LooseForeignKeyHelpers
|
|
|
|
milestone '18.2'
|
|
|
|
def up
|
|
track_record_deletions(:ai_active_context_connections)
|
|
end
|
|
|
|
def down
|
|
untrack_record_deletions(:ai_active_context_connections)
|
|
end
|
|
end
|