Own local Caching?
Import Enum from my TS to the schema
schema.prisma file instead of defining it inside ?
Because all my types used by both front & back are located to a dedicated package, and it actually force me to define my enum in 2 distinct places, where I would like to only have it in my types package....reset db and migrate changes
Unable to run db push because of introspected inconsistencies with supabase
public access and removed all the introspected tables from my schema.prisma. Currently my schema contains a single table unrelated to supabase. I'm trying to db push it but I get an error as follows:
```
Error: P4002
...Ordering of createMany items
create method and include a createMany, does Prisma guarantee the ordering of the items created? Or can they get created out of order?
Eg. given the following:
```...Error: cannot find module ‘.prisma/client/index’
Export client types in custom package
typescript server not working after installing @prisma/client
Tips on designing this recursive database model
replyToPost in the query.
But every post can also be a repost of another post, so both the post and the ´replyToPost need to include a potential repostOfPost`....
how to make fields selection mandatory?
select and include are optional fields, more of that it's possible to pass just true, without specifying every field:
```
prisma.post.create({
data: ...
include: {...Hosting Typescript Express Server with Prisma on Vercel
rimraf dist && tsc
rimraf dist && tsc
Connection Pooling issues with Azure SQL
Timed out fetching a new connection from the connection pool. More info: http://pris.ly/d/connection-pool (Current connection pool timeout: 10, connection limit: 3)
Timed out fetching a new connection from the connection pool. More info: http://pris.ly/d/connection-pool (Current connection pool timeout: 10, connection limit: 3)
PrismaClientInitializationError
How to add new schema with multiSchema feature without database reset
prisma.schema migration detects a drift and asks us to drop the database even though nothing else has changed. How can I add a new empty schema without dropping all the data?
```
generator client {
provider = "prisma-client-js"...Setting up SafeQL for Prisma
eslint.config and tsconfig. This is my eslint.config.mjs right now:
```js
import tseslint from 'typescript-eslint';
import safeql from '@ts-safeql/eslint-plugin/config';
...too many db connections on Prisma Accelerate

Failing to write raw query
Is there an option to turn off the dataloader query optimization?
Update column type without losing data
int and I need to migrate that to bigint. If i change the column type in the prisma schema and run npx prisma migrate dev --name change-type it wants to reset the public schema. I don't want to lose all the data so what's the proper way of doing this?