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
the table referential.segment is entirely missing from the migrations.
It should be added, as well as indexes (which had to be recreated by hand):
ALTERTABLEreferential.segment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME referential.segment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
ALTERTABLE ONLY referential.segment ADD CONSTRAINT"PK_segment"PRIMARY KEY (id);
CREATEINDEX "IX_segment_id_ref_country_fk" ONreferential.segment USING btree (id_ref_country_fk);
CREATEINDEX "IX_segment_id_ref_river_fk" ONreferential.segment USING btree (id_ref_river_fk);
CREATEINDEXsegment_idONreferential.segment USING btree (id);
CREATEINDEXsegment_importanceONreferential.segment USING btree (importance);
CREATEINDEXsegment_the_geomONreferential.segment USING gist (the_geom);
The text was updated successfully, but these errors were encountered:
the table
referential.segment
is entirely missing from the migrations.It should be added, as well as indexes (which had to be recreated by hand):
The text was updated successfully, but these errors were encountered: