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.rb2
1 files changed, 1 insertions, 1 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
index f71a5276dee..9071e3e17e3 100644
--- 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
@@ -9,7 +9,7 @@ class AddForeignKeyFromWebauthnRegistrationsToUsers < ActiveRecord::Migration[6.
def up
with_lock_retries do
- add_foreign_key :webauthn_registrations, :users, column: :user_id, on_delete: :cascade # rubocop:disable Migration/AddConcurrentForeignKey
+ add_foreign_key :webauthn_registrations, :users, column: :user_id, on_delete: :cascade
end
end