diff --git a/release/0.2.1+v1.136.0 b/release/0.2.1+v1.136.0 index 9fce8e3..5015548 100644 --- a/release/0.2.1+v1.136.0 +++ b/release/0.2.1+v1.136.0 @@ -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 \ No newline at end of file +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"; +```