gmokercom/back-end/prisma/schema.prisma
dorian melenotte 9e06e92c57
Some checks failed
/ deploy (push) Failing after 5s
add: folder of the backend
2024-09-10 18:08:10 +02:00

22 lines
526 B
Plaintext

// 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 = "mysql"
url = env("DATABASE_URL")
}
model User {
id Int @unique @default(autoincrement())
username String
pswd String
email String @unique
}