initial commit
This commit is contained in:
commit
b25eb51ff0
280 changed files with 178550 additions and 0 deletions
20
database-service/node_modules/.prisma/client/schema.prisma
generated
vendored
Normal file
20
database-service/node_modules/.prisma/client/schema.prisma
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
// This is your Prisma schema file,
|
||||
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
||||
|
||||
// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?
|
||||
// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init
|
||||
|
||||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model User {
|
||||
username String @id @unique // Primary key and unique
|
||||
passwordHash String
|
||||
machineId String?
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue