diff options
Diffstat (limited to 'db/schema.sql')
-rw-r--r-- | db/schema.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/db/schema.sql b/db/schema.sql index 37ffddd51..d4dbd76de 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -388,3 +388,12 @@ create table admin_log ( whenedited timestamp not null default ms_current_timestamp() ); +-- Record open 311 configuration details + +create table open311conf ( + id integer primary key, + area_id integer not null unique, + endpoint text not null, + jurisdiction text, + api_key text +); |