fix first online resevation

This commit is contained in:
root
2026-05-09 20:01:51 -04:00
parent c4a45c8b21
commit 09b0e3b55f
75 changed files with 6394 additions and 2190 deletions
@@ -0,0 +1,2 @@
-- Empty placeholder migration (no schema changes)
SELECT 1;
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "employees" ADD COLUMN IF NOT EXISTS "passwordHash" TEXT;
@@ -0,0 +1,7 @@
-- AlterTable employees
ALTER TABLE "employees" ADD COLUMN IF NOT EXISTS "passwordResetToken" TEXT UNIQUE;
ALTER TABLE "employees" ADD COLUMN IF NOT EXISTS "passwordResetExpiresAt" TIMESTAMPTZ;
-- AlterTable admin_users
ALTER TABLE "admin_users" ADD COLUMN IF NOT EXISTS "passwordResetToken" TEXT UNIQUE;
ALTER TABLE "admin_users" ADD COLUMN IF NOT EXISTS "passwordResetExpiresAt" TIMESTAMPTZ;
@@ -0,0 +1 @@
provider = "postgresql"