mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-21 12:56:21 +02:00
✨ Add image column to users table (#999)
This commit is contained in:
parent
c04a670607
commit
ba8c05fb57
2 changed files with 3 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "users" ADD COLUMN "image" TEXT;
|
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue