21 lines
379 B
Plaintext
21 lines
379 B
Plaintext
|
// This is your Prisma schema file,
|
||
|
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
||
|
|
||
|
generator client {
|
||
|
provider = "prisma-client-js"
|
||
|
}
|
||
|
|
||
|
datasource db {
|
||
|
provider = "postgresql"
|
||
|
url = env("DATABASE_URL")
|
||
|
}
|
||
|
|
||
|
model User {
|
||
|
uuid String @unique @default(uuid()) @db.Uuid
|
||
|
firstName String
|
||
|
lastName String
|
||
|
email String
|
||
|
|
||
|
@@map("user")
|
||
|
}
|