user/prisma/schema.prisma

21 lines
387 B
Plaintext
Raw Normal View History

2022-12-13 14:27:28 +00:00
// 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
2022-12-14 10:37:13 +00:00
email String @unique
2022-12-13 14:27:28 +00:00
@@map("user")
}