You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 :
The text was updated successfully, but these errors were encountered: