chore: update release note 0.2.1+v1.136.0

This commit is contained in:
Philipp Rothmann
2025-09-16 12:21:17 +02:00
parent 81c57eb30f
commit 6dd3c607e3

View File

@ -1 +1,14 @@
when upgrading from below 1.132.0 first need to run 1.132.0-1.136.0 first! see https://immich.app/errors/#typeorm-upgrade
when upgrading from below 1.132.0 first need to run 1.132.0-1.136.0 first! see https://immich.app/errors/#typeorm-upgrade
### DB migration failing: multiple primary keys for table "geodata_places"
https://github.com/immich-app/immich/issues/20167
I ran into this issue while upgrading and had to remove it manually:
```bash
abra app run immich.example.com database bash
psql -U postgres
\c immich
ALTER TABLE "geodata_places" DROP CONSTRAINT IF EXISTS "geodata_places_tmp_pkey";
```