diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2021-07-08 05:31:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-08 05:31:28 +0200 |
commit | 771c9d4ba87a388dc306c58139d11bf510680c98 (patch) | |
tree | aca7d7031d7b462b27af6b47e2099ace81be1beb /db/migrate | |
parent | 2e0eac71ddf0f5b61b6e395f57b7bc3f805cbf87 (diff) |
Add ability to skip sign-in token authentication for specific users (#16427)
Remove "active within last two weeks" exception for sign in token requirement Change admin reset password to lock access until the password is reset
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20210621221010_add_skip_sign_in_token_to_users.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20210621221010_add_skip_sign_in_token_to_users.rb b/db/migrate/20210621221010_add_skip_sign_in_token_to_users.rb new file mode 100644 index 000000000..43ad9b954 --- /dev/null +++ b/db/migrate/20210621221010_add_skip_sign_in_token_to_users.rb @@ -0,0 +1,5 @@ +class AddSkipSignInTokenToUsers < ActiveRecord::Migration[6.1] + def change + add_column :users, :skip_sign_in_token, :boolean + end +end |