server/prisma/schema.prisma
Jo 5b03696ed4 chore: setup prisma
testing: add user registration example base
2024-09-11 23:40:12 +02:00

17 lines
No EOL
323 B
Text

// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
model User {
id Int @id @default(autoincrement())
email String @unique
name String
}