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
Script generated by ERD Tool don't reproduce geometry type.
To Reproduce
Steps to reproduce the behavior:
1:
CREATE TABLE IF NOT EXISTS test.point
(
id_point character varying(500) COLLATE pg_catalog."default" NOT NULL,
fk_polyg character varying(500) COLLATE pg_catalog."default", geom geometry(Point,2154)
);
2: Right click on schema "test" ; "create ERD from schema"
3. On ERD : click on "generate SQL"
4. See the error :
-- This script was generated by the ERD tool in pgAdmin
BEGIN;
CREATE TABLE IF NOT EXISTS test.point
(
id_point character varying(500) COLLATE pg_catalog."default" NOT NULL,
fk_polyg character varying(500) COLLATE pg_catalog."default", geom geometry
);
END;
Expected behavior
Reproduice the geometry type (point) and the EPSG (2154)
Desktop (please complete the following information):
OS: [ Windows ]
Version: [PGadmin 8.14]
Thank you for your help if the bug source is me :)
The text was updated successfully, but these errors were encountered:
The actual problem is with the table dialog where extra info for the geometry column cannot be entered/missing. And so ERD is not able to generate the SQL as info is not available.
Hello
Describe the bug
Script generated by ERD Tool don't reproduce geometry type.
To Reproduce
Steps to reproduce the behavior:
1:
CREATE TABLE IF NOT EXISTS test.point
(
id_point character varying(500) COLLATE pg_catalog."default" NOT NULL,
fk_polyg character varying(500) COLLATE pg_catalog."default",
geom geometry(Point,2154)
);
2: Right click on schema "test" ; "create ERD from schema"
3. On ERD : click on "generate SQL"
4. See the error :
-- This script was generated by the ERD tool in pgAdmin
BEGIN;
CREATE TABLE IF NOT EXISTS test.point
(
id_point character varying(500) COLLATE pg_catalog."default" NOT NULL,
fk_polyg character varying(500) COLLATE pg_catalog."default",
geom geometry
);
END;
Expected behavior
Reproduice the geometry type (point) and the EPSG (2154)
Desktop (please complete the following information):
Thank you for your help if the bug source is me :)
The text was updated successfully, but these errors were encountered: