aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.sql
diff options
context:
space:
mode:
authorDave Arter <davea@mysociety.org>2016-12-01 16:51:04 +0000
committerDave Arter <davea@mysociety.org>2017-01-10 10:55:19 +0000
commitd7c3106d64f8237a4f6388a0e51dcd29bae93ec8 (patch)
treee5d18a2c72f11b0ab434cda9305d17eb06661587 /db/schema.sql
parent7eb758ab64d6d179d28dd8ac0acb33c91593e82f (diff)
Add ‘state’ field to ResponseTemplate model
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 d3bb5040e..e54c6b7b2 100644
--- a/db/schema.sql
+++ b/db/schema.sql
@@ -486,6 +486,7 @@ create table response_templates (
text text not null,
created timestamp not null default current_timestamp,
auto_response boolean NOT NULL DEFAULT 'f',
+ state text,
unique(body_id, title)
);