initial commit
This commit is contained in:
commit
b25eb51ff0
280 changed files with 178550 additions and 0 deletions
14
database-service/prisma/schema.prisma
Normal file
14
database-service/prisma/schema.prisma
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model users {
|
||||
username String @id
|
||||
password_hash String?
|
||||
machine_id String?
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue