aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.sql
diff options
context:
space:
mode:
authorDave Arter <davea@mysociety.org>2018-03-22 11:16:53 +0000
committerDave Arter <davea@mysociety.org>2018-03-29 16:04:31 +0100
commitbd23bc137f37a87147e4f2f52578d10bf81473b0 (patch)
tree38a34aa058f24c77954ff5f5a53bc277f6a5263a /db/schema.sql
parent7974ee96b3cdbf81d13459a9280f08d8c85c43a7 (diff)
Add ResponseTemplate.external_status_code field
Diffstat (limited to 'db/schema.sql')
-rw-r--r--db/schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/db/schema.sql b/db/schema.sql
index 739090480..7d4b90d3d 100644
--- a/db/schema.sql
+++ b/db/schema.sql
@@ -472,6 +472,7 @@ create table response_templates (
created timestamp not null default current_timestamp,
auto_response boolean NOT NULL DEFAULT 'f',
state text,
+ external_status_code text,
unique(body_id, title)
);