added tons of features

This commit is contained in:
2025-02-05 08:01:14 +02:00
parent 4ae0d8c545
commit 8138da6b1d
195 changed files with 12619 additions and 415 deletions

View File

@@ -0,0 +1,26 @@
// 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"
previewFeatures = ["typedSql", "prismaSchemaFolder"]
/// relationJoins is not available for MySQL < 8.0.14 and MariaDB.
/// previewFeatures = ["relationJoins"]
}
/// Always after the prisma-client-js generator
generator json {
provider = "prisma-json-types-generator"
// clientOutput = "lib/db/prisma/generated"
}
// generator zod {
// provider = "zod-prisma-types"
// useMultipleFiles = true
// createRelationValuesTypes = true
// }
datasource db {
provider = "mysql"
url = env("DATABASE_URL")
}