added prisma and db

This commit is contained in:
PxlLoewe
2025-01-17 00:24:09 +01:00
parent 9315454159
commit 0344e1b51a
5 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
// 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")
}