db support

This commit is contained in:
Dobromir Popov
2024-04-29 22:24:44 +03:00
parent b9f635e570
commit 1e47ba669a
2 changed files with 11 additions and 7 deletions

View File

@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE `User`
ADD COLUMN `passwordHashLocalAccount` VARCHAR(191) NULL;

View File

@ -285,6 +285,7 @@ model User {
image String?
accounts Account[]
sessions Session[]
passwordHashLocalAccount String? // New field to store the hashed password
// Optional relation to Publisher
publisherId String? @unique