summaryrefslogtreecommitdiff
path: root/db/migrate/20200510183128_add_foreign_key_from_webauthn_registrations_to_users.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200510183128_add_foreign_key_from_webauthn_registrations_to_users.rb')
-rw-r--r--db/migrate/20200510183128_add_foreign_key_from_webauthn_registrations_to_users.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/db/migrate/20200510183128_add_foreign_key_from_webauthn_registrations_to_users.rb b/db/migrate/20200510183128_add_foreign_key_from_webauthn_registrations_to_users.rb
new file mode 100644
index 00000000000..f71a5276dee
--- /dev/null
+++ b/db/migrate/20200510183128_add_foreign_key_from_webauthn_registrations_to_users.rb
@@ -0,0 +1,21 @@
+# frozen_string_literal: true
+
+class AddForeignKeyFromWebauthnRegistrationsToUsers < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ # disable_ddl_transaction!
+
+ def up
+ with_lock_retries do
+ add_foreign_key :webauthn_registrations, :users, column: :user_id, on_delete: :cascade # rubocop:disable Migration/AddConcurrentForeignKey
+ end
+ end
+
+ def down
+ with_lock_retries do
+ remove_foreign_key :webauthn_registrations, column: :user_id
+ end
+ end
+end