From bdcc9938343c838a8c0be98e6bf53d3bbc03d9df Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 19 Aug 2024 13:30:24 -0500 Subject: Migrations: Add forgot_password_tokens table Create the `forgot_password_tokens` table to be used to enable users change their passwords if they forget. --- ...01_p2vXR-create-forgot-password-tokens-table.py | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 migrations/auth/20240819_01_p2vXR-create-forgot-password-tokens-table.py (limited to 'migrations') diff --git a/migrations/auth/20240819_01_p2vXR-create-forgot-password-tokens-table.py b/migrations/auth/20240819_01_p2vXR-create-forgot-password-tokens-table.py new file mode 100644 index 0000000..44318bd --- /dev/null +++ b/migrations/auth/20240819_01_p2vXR-create-forgot-password-tokens-table.py @@ -0,0 +1,26 @@ +""" +Create forgot_password_tokens table + +This will be used to enable users to validate/verify their password change +requests. +""" + +from yoyo import step + +__depends__ = {'20240606_03_BY7Us-drop-group-roles-table'} + +steps = [ + step( + """ + CREATE TABLE IF NOT EXISTS forgot_password_tokens( + user_id TEXT NOT NULL, + token TEXT NOT NULL, + generated INTEGER NOT NULL, + expires INTEGER NOT NULL, + PRIMARY KEY(user_id), + FOREIGN KEY(user_id) REFERENCES users(user_id) + ON UPDATE CASCADE ON DELETE CASCADE + ) WITHOUT ROWID + """, + "DROP TABLE IF EXISTS forgot_password_tokens") +] -- cgit v1.2.3