Browse Source

Rubocop

pull/611/head
baarkerlounger 3 years ago
parent
commit
8807cc887e
  1. 4
      db/migrate/20220525130518_drop_admin_users.rb

4
db/migrate/20220525130518_drop_admin_users.rb

@ -29,8 +29,8 @@ class DropAdminUsers < ActiveRecord::Migration[7.0]
t.integer "failed_attempts", default: 0
t.string "unlock_token"
t.datetime "locked_at", precision: nil
t.index ["encrypted_otp_secret_key"], name: "index_admin_users_on_encrypted_otp_secret_key", unique: true
t.index ["unlock_token"], name: "index_admin_users_on_unlock_token", unique: true
t.index %w[encrypted_otp_secret_key], name: "index_admin_users_on_encrypted_otp_secret_key", unique: true
t.index %w[unlock_token], name: "index_admin_users_on_unlock_token", unique: true
end
end
end

Loading…
Cancel
Save