Password Reset spec and Database Table and related templates

This commit is contained in:
Tina_Azure
2023-04-27 00:23:04 +02:00
parent 2ea6c7a48f
commit 9392425794
4 changed files with 78 additions and 0 deletions

View File

@@ -57,6 +57,13 @@ sudo -u postgres psql -c "CREATE TABLE cryptoWallets(
);
" cavecomm
sudo -u postgres psql -c "CREATE TABLE passwordResetKeys(
freelancerEmail text PRIMARY KEY,
passwordResetKey text UNIQUE,
expiration timestamp
);
" cavecomm
sudo -u postgres psql -c "CREATE TABLE aliasRoutes(
aliasName text PRIMARY KEY,
freelancerID int,