Skip to content

Commit

Permalink
Downgrade postgres to fix integration test
Browse files Browse the repository at this point in the history
The prisma postgres test app had an error on postgres 17. Downgrade to
the latest 16.4 version.

```
ERROR:  column d.daticulocale does not exist
LINE 6:        d.daticulocale as "ICU Locale",
               ^
HINT:  Perhaps you meant to reference the column "d.datlocale".

```
  • Loading branch information
tombruijn committed Sep 30, 2024
1 parent 4695a6b commit 6a5ff59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/express-prisma-postgres/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.8"

services:
postgres:
image: postgres
image: postgres:16.4
restart: always
environment:
- POSTGRES_USER=my_user
Expand Down

0 comments on commit 6a5ff59

Please sign in to comment.