initial user-db-service

This commit is contained in:
JBB0807 2025-04-16 13:33:12 -07:00
parent 578e57ad7a
commit c7af63a7dd
9 changed files with 1407 additions and 0 deletions

View file

@ -0,0 +1,19 @@
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?
}