Skip to content

Commit 804d2b9

Browse files
committed
removed foi name 25 character limit
1 parent a43502d commit 804d2b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

walib/sqlschema.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
--=====================================
5252
5353
CREATE TABLE feature_type (
54-
name_fty character varying(25) NOT NULL,
54+
name_fty character varying NOT NULL,
5555
id_fty integer NOT NULL
5656
);
5757
COMMENT ON TABLE feature_type IS 'Definition of FeatureOfInterest type.';
@@ -69,7 +69,7 @@
6969
desc_foi text,
7070
id_fty_fk integer NOT NULL,
7171
id_foi integer NOT NULL,
72-
name_foi character varying(25) NOT NULL
72+
name_foi character varying NOT NULL
7373
);
7474
SELECT AddGeometryColumn('foi', 'geom_foi', $SRID, 'POINT', 3);
7575
COMMENT ON TABLE foi IS 'Stores FeatureOfInterest type.';

0 commit comments

Comments
 (0)