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

20 lines
369 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 {
2025-04-17 13:20:08 -07:00
UserId Int @id @default(autoincrement())
2025-04-16 13:33:12 -07:00
Name String?
Email String?
Password String?
Role String?
GoogleId String?
LoginType String?
}