aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0010-add_open311_conf.sql
blob: 920272c052cd263b2552af8fc76325ee2c42d2f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
begin;

CREATE TABLE open311conf (
    id           SERIAL PRIMARY KEY,
    area_id      INTEGER NOT NULL unique,
    endpoint     TEXT NOT NULL,
    jurisdiction TEXT,
    api_key      TEXT
);

commit;