Files
drop/server/prisma/schema.prisma
T
DecDuck c8db07b9d7 fix: prisma migrations in docker
i hate prisma so so so so so much
2025-04-20 18:12:29 +10:00

13 lines
323 B
Plaintext

// 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 = ["prismaSchemaFolder", "omitApi", "fullTextSearchPostgres"]
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}