15 lines
487 B
Plaintext
15 lines
487 B
Plaintext
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";
|
|
```
|