summaryrefslogtreecommitdiff
path: root/db/migrate/20200510182218_add_text_limit_to_user_details_webauthn_xid.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200510182218_add_text_limit_to_user_details_webauthn_xid.rb')
-rw-r--r--db/migrate/20200510182218_add_text_limit_to_user_details_webauthn_xid.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/migrate/20200510182218_add_text_limit_to_user_details_webauthn_xid.rb b/db/migrate/20200510182218_add_text_limit_to_user_details_webauthn_xid.rb
deleted file mode 100644
index 715cfd771f5..00000000000
--- a/db/migrate/20200510182218_add_text_limit_to_user_details_webauthn_xid.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-class AddTextLimitToUserDetailsWebauthnXid < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_text_limit :user_details, :webauthn_xid, 100
- end
-
- def down
- remove_text_limit :user_details, :webauthn_xid
- end
-end