refactor: add selectedImage for profile shown

This commit is contained in:
Methapon Metanipat 2024-09-05 16:15:11 +07:00
parent 6d6e0548fe
commit 5b2e05116c
2 changed files with 4 additions and 0 deletions

View file

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "User" ADD COLUMN "selectedImage" TEXT;

View file

@ -342,6 +342,8 @@ model User {
birthDate DateTime? @db.Date
selectedImage String?
status Status @default(CREATED)
statusOrder Int @default(0)