drilkmops
05/24/2023, 8:10 PMuser
model is the public schema, the users
model is the auth schema.
model user {
// This user id is from the auth schema, not the public schema.
user users @relation(fields: [id], references: [id])
id String @id @db.Uuid
email String
first_name String
last_name String
// ## Defined Relationships
// ...removed
@@schema("public")
}