Open chkp-liordan opened 2 months ago
Has your fh_organization table lost its primary key? Can you check? I cannot see how this would be possible.
The error appears to be saying that the fh_organization has no primary key or unique field called "id" - which is most definitely does!
apparently, fh_organization and fh_person table has no constraint in my DB. i start from 1.6.0 and upgrade to 1.7.0 and now to 1.8.0, and it seams that there was no constraint.
fixing that by running the next commands:
ALTER TABLE fh_organization ADD CONSTRAINT pk_fh_organization_id PRIMARY KEY (id);
ALTER TABLE fh_organization ADD CONSTRAINT uq_fh_organization_id UNIQUE (id);
ALTER TABLE fh_person ADD CONSTRAINT pk_fh_person_id PRIMARY KEY (id);
ALTER TABLE fh_person ADD CONSTRAINT uq_fh_person_id UNIQUE (id);
management repository got an error while migration.
Featurehub running on k8s with RDS PostgreSQL. currently 1.7.0 and upgrading to 1.8.0. edge and dacha got ready but mr got on crash loop
here the :