Browse Source
* CLDC-4330: Add reset password on confirmation flag to be used instead of resetting sign in count to 0 * CLDC-4330: Use this new flag to determine when to show password reset * CLDC-4330: Update confirmation comment * fixup! CLDC-4330: Update confirmation comment * CLDC-4330: Rename col to force_reset_password_on_confirmation * CLDC-4330: Remove unneeded ifmain
5 changed files with 14 additions and 3 deletions
@ -0,0 +1,5 @@ |
|||||||
|
class AddForceResetPasswordOnConfirmationToUsers < ActiveRecord::Migration[7.2] |
||||||
|
def change |
||||||
|
add_column :users, :force_reset_password_on_confirmation, :boolean, default: false |
||||||
|
end |
||||||
|
end |
||||||
Loading…
Reference in new issue