Initial commit
This commit is contained in:
11
apps/backend/prisma/user.prisma
Normal file
11
apps/backend/prisma/user.prisma
Normal file
@@ -0,0 +1,11 @@
|
||||
model User {
|
||||
id String @id @db.Uuid
|
||||
supabaseUserId String @unique @map("supabase_user_id") @db.Uuid
|
||||
email String @unique
|
||||
fullName String @map("full_name")
|
||||
createdAt DateTime @default(now()) @map("created_at")
|
||||
updatedAt DateTime @updatedAt @map("updated_at")
|
||||
complexes ComplexUser[]
|
||||
|
||||
@@map("users")
|
||||
}
|
||||
Reference in New Issue
Block a user