summaryrefslogtreecommitdiff
path: root/db/migrate/20200811055018_remove_not_null_constraint_on_type_from_audit_events.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200811055018_remove_not_null_constraint_on_type_from_audit_events.rb')
-rw-r--r--db/migrate/20200811055018_remove_not_null_constraint_on_type_from_audit_events.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/db/migrate/20200811055018_remove_not_null_constraint_on_type_from_audit_events.rb b/db/migrate/20200811055018_remove_not_null_constraint_on_type_from_audit_events.rb
deleted file mode 100644
index 25c3ef71655..00000000000
--- a/db/migrate/20200811055018_remove_not_null_constraint_on_type_from_audit_events.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveNotNullConstraintOnTypeFromAuditEvents < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- # To avoid deadlock on audit_event and audit_event_part... since there is a trigger to insert record from audit_events
- # to audit_events_part..., we need to ensure each ALTER TABLE command run in its own transaction.
- def up
- with_lock_retries do
- change_column_null :audit_events_part_5fc467ac26, :type, true
- end
-
- with_lock_retries do
- change_column_null :audit_events, :type, true
- end
- end
-
- def down
- # no-op -- null values might be added after this constraint is removed.
- end
-end