diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-12-10 16:28:52 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-12-15 00:11:05 +0000 |
commit | f82abb282f60191ee530c552bf025e509e2a57e8 (patch) | |
tree | 009ec8c702c77e5cd4e0b6a48542eee82538d4f5 /db/schema.sql | |
parent | 9486610ef67f031d80e70ec3cf1fea330858abd5 (diff) |
Rename 'open311conf' database table to 'body'.
Diffstat (limited to 'db/schema.sql')
-rw-r--r-- | db/schema.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/db/schema.sql b/db/schema.sql index 6ebec5689..87b5102c7 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -447,12 +447,12 @@ create table admin_log ( whenedited timestamp not null default ms_current_timestamp() ); --- Record open 311 configuration details +-- Record details of reporting bodies, including open311 configuration details -create table open311conf ( +create table body ( id serial primary key, area_id integer not null unique, - endpoint text not null, + endpoint text, jurisdiction text, api_key text, send_method text, |