diff options
Diffstat (limited to 'db/schema.sql')
-rw-r--r-- | db/schema.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/db/schema.sql b/db/schema.sql index a4323f880..1f0d0d4c3 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -83,6 +83,9 @@ create table contacts ( -- extra fields required for open311 extra text, + -- for things like missed bin collections + non_public boolean default 'f' + -- per contact endpoint configuration endpoint text, jurisdiction text default '', @@ -206,6 +209,9 @@ create table problem ( -- record send_method used, which can be used to infer usefulness of external_id send_method_used text, + -- for things like missed bin collections + non_public BOOLEAN default 'f' + -- record details about messages from external sources, eg. message manager external_source text, external_source_id text, |