microservices/user-db-service/prisma/schema.prisma

20 lines
346 B
Text
Raw Normal View History

2025-04-16 13:33:12 -07:00
generator client {
provider = "prisma-client-js"
binaryTargets = ["native", "windows"]
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model users {
UserId String @id
Name String?
Email String?
Password String?
Role String?
GoogleId String?
LoginType String?
}