diff options
author | Struan Donald <struan@exo.org.uk> | 2017-09-08 15:57:03 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2017-09-13 09:50:02 +0100 |
commit | 0998aef4fb4e7e94b950a6b337ee0c0df72ec7de (patch) | |
tree | f849a3e178fcbae8af93839dacf961d52e1e92b4 /db/schema_0055-add-default-to-reponsepriority.sql | |
parent | c03096d4ffe3e17d504239ec4c0f006b1266c8e5 (diff) |
add is_default column to response_priorities
Diffstat (limited to 'db/schema_0055-add-default-to-reponsepriority.sql')
-rw-r--r-- | db/schema_0055-add-default-to-reponsepriority.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/schema_0055-add-default-to-reponsepriority.sql b/db/schema_0055-add-default-to-reponsepriority.sql new file mode 100644 index 000000000..0f8b72e13 --- /dev/null +++ b/db/schema_0055-add-default-to-reponsepriority.sql @@ -0,0 +1,5 @@ +BEGIN; + +ALTER TABLE response_priorities ADD is_default boolean not null default 'f'; + +COMMIT; |