This commit is contained in:
headlesdev
2025-05-17 12:39:56 +02:00
parent 9d6b5b87fb
commit 4f60ae5f7b
6 changed files with 778 additions and 37 deletions

15
prisma/schema.prisma Normal file
View File

@@ -0,0 +1,15 @@
// 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"
output = "./generated/prisma"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}