Skip to content

Commit

Permalink
add Triform oid
Browse files Browse the repository at this point in the history
  • Loading branch information
TriformMoritz authored and m-kuhn committed Jan 9, 2018
1 parent 68db753 commit 54784cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 02_oid_generation.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 54784cc

Please sign in to comment.