FIXED - Drop leftover Prisma ?schema=public from the DB URL
CI / quality (push) Waiting to run

- postgres.js forwarded schema as a startup param; Postgres rejected the connection
- Remove ?schema=public from docker-compose, CI, and the client default
- Strip any query string in lib/db/index.ts so this cannot recur
This commit is contained in:
Moh
2026-08-08 03:04:26 +02:00
parent 1264b577a1
commit 0f436ec05a
3 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ jobs:
quality:
runs-on: ubuntu-latest
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/moh_sass?schema=public
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/moh_sass
NEXT_TELEMETRY_DISABLED: "1"
steps:
- name: Checkout