Add image column to users table (#999)

This commit is contained in:
Luke Vella 2024-01-27 13:47:07 +07:00 committed by GitHub
parent c04a670607
commit ba8c05fb57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "users" ADD COLUMN "image" TEXT;

View file

@ -42,6 +42,7 @@ model User {
name String
email String @unique() @db.Citext
emailVerified DateTime? @map("email_verified")
image String?
timeZone String? @map("time_zone")
weekStart Int? @map("week_start")
timeFormat TimeFormat? @map("time_format")