diff --git a/02_oid_generation.sql b/02_oid_generation.sql index 2bdf27b5..2f5cdc86 100644 --- a/02_oid_generation.sql +++ b/02_oid_generation.sql @@ -16,13 +16,14 @@ WITH ( COMMENT ON TABLE qgep.is_oid_prefixes IS 'This table contains OID prefixes for different communities or organizations. The application or administrator changing this table has to make sure that only one record is set to active.'; --- sample entry for the City of Uster - you need to adapt this entry later for your own organization +-- sample entry for Invalid - you need to adapt this entry later for your own organization INSERT INTO qgep.is_oid_prefixes (prefix,organization,active) VALUES ('00000000','Invalid',TRUE); INSERT INTO qgep.is_oid_prefixes (prefix,organization,active) VALUES ('ch11h8mw','Stadt Uster',FALSE); INSERT INTO qgep.is_oid_prefixes (prefix,organization,active) VALUES ('ch15z36d','SIGE',FALSE); INSERT INTO qgep.is_oid_prefixes (prefix,organization,active) VALUES ('ch13p7mz','Arbon',FALSE); INSERT INTO qgep.is_oid_prefixes (prefix,organization,active) VALUES ('ch176dc9','Sigip',FALSE); INSERT INTO qgep.is_oid_prefixes (prefix,organization,active) VALUES ('ch17f516','Prilly',FALSE); +INSERT INTO qgep.is_oid_prefixes (prefix,organization,active) VALUES ('ch17nq5g','Triform',FALSE); CREATE INDEX in_qgep_is_oid_prefixes_active ON qgep.is_oid_prefixes