From ac9ed2ae9cd09d84b39af1e041191f753abbbdf2 Mon Sep 17 00:00:00 2001
From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Date: Thu, 11 Jul 2013 10:01:16 +0200
Subject: [PATCH] Bug 10572: Add phone to message_transport_types table for new installs
In connection to bug 4246 commit 591bae324d77d285b27dfa6e10dc7001671f53cc added
phone to the message_transport_types table in updatedatabase.pl
This should be done also for new installs via the .sql files of the web
installer.
I am adding it only to English now, basing this change upon the work in reports
10509 and 10520. (I discovered this tiny omission there too.)
Test plan:
Apply patches 10509/10520.
Run new install or run this particular sql file from command line.
Note: If you only run this particular file, you do not need patch 10509.
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
---
.../mysql/en/mandatory/message_transport_types.sql | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/installer/data/mysql/en/mandatory/message_transport_types.sql b/installer/data/mysql/en/mandatory/message_transport_types.sql
index bbcb64c..d4d7de4 100644
--- a/installer/data/mysql/en/mandatory/message_transport_types.sql
+++ b/installer/data/mysql/en/mandatory/message_transport_types.sql
@@ -4,4 +4,5 @@ values
('email'),
('print'),
('sms'),
-('feed');
+('feed'),
+('phone');
--
1.7.2.5