diff options
author | Abyss777 <abyss@fox5.ru> | 2018-06-26 12:29:08 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2018-06-26 12:29:08 +0500 |
commit | 253f11afa0e31d97d332ca3269111eff36ee347b (patch) | |
tree | 98866ec1ffed872995b4a71c0c1deb99a4f9c656 /schema | |
parent | 825ee0d178a24620f075cb4ffb8d49c75b046484 (diff) | |
download | trackermap-server-253f11afa0e31d97d332ca3269111eff36ee347b.tar.gz trackermap-server-253f11afa0e31d97d332ca3269111eff36ee347b.tar.bz2 trackermap-server-253f11afa0e31d97d332ca3269111eff36ee347b.zip |
Rename transports to notificators
Diffstat (limited to 'schema')
-rw-r--r-- | schema/changelog-4.0.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/schema/changelog-4.0.xml b/schema/changelog-4.0.xml index 82403c83c..9a5cd1526 100644 --- a/schema/changelog-4.0.xml +++ b/schema/changelog-4.0.xml @@ -56,41 +56,41 @@ <changeSet author="author" id="changelog-4.0"> <addColumn tableName="tc_notifications"> - <column name="transports" type="VARCHAR(128)" /> + <column name="notificators" type="VARCHAR(128)" /> </addColumn> <update tableName="tc_notifications"> - <column name="transports" value="web,mail,sms" /> + <column name="notificators" value="web,mail,sms" /> <where>web = 1 AND mail = 1 AND sms = 1</where> </update> <update tableName="tc_notifications"> - <column name="transports" value="web,mail" /> + <column name="notificators" value="web,mail" /> <where>web = 1 AND mail = 1 AND sms = 0</where> </update> <update tableName="tc_notifications"> - <column name="transports" value="web" /> + <column name="notificators" value="web" /> <where>web = 1 AND mail = 0 AND sms = 0</where> </update> <update tableName="tc_notifications"> - <column name="transports" value="web,sms" /> + <column name="notificators" value="web,sms" /> <where>web = 1 AND mail = 0 AND sms = 1</where> </update> <update tableName="tc_notifications"> - <column name="transports" value="mail,sms" /> + <column name="notificators" value="mail,sms" /> <where>web = 0 AND mail = 1 AND sms = 1</where> </update> <update tableName="tc_notifications"> - <column name="transports" value="mail" /> + <column name="notificators" value="mail" /> <where>web = 0 AND mail = 1 AND sms = 0</where> </update> <update tableName="tc_notifications"> - <column name="transports" value="sms" /> + <column name="notificators" value="sms" /> <where>web = 0 AND mail = 0 AND sms = 1</where> </update> |