aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorDave Whiteland <dave@mysociety.org>2012-07-11 19:03:38 +0100
committerDave Whiteland <dave@mysociety.org>2012-07-11 23:57:54 +0100
commit55751b48ca0cd977bf1d58ed600eff22bf5e8e81 (patch)
treefbb582003641d5eec5d2d978741a5f0248f2d3fe /db
parente76a83d5ae9e34f227921847dde45518f6073896 (diff)
added Message Manager ID (mm_msg_id) column and used it
Diffstat (limited to 'db')
-rw-r--r--db/schema_0021-add_mm_msg_id_to_problem.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/db/schema_0021-add_mm_msg_id_to_problem.sql b/db/schema_0021-add_mm_msg_id_to_problem.sql
new file mode 100644
index 000000000..12c981ed3
--- /dev/null
+++ b/db/schema_0021-add_mm_msg_id_to_problem.sql
@@ -0,0 +1,6 @@
+begin;
+
+ALTER table problem
+ ADD column mm_msg_id INTEGER;
+
+commit;