aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorAokromes <jipr@hotmail.com>2013-02-04 06:55:26 -0800
committerAokromes <jipr@hotmail.com>2013-02-04 06:55:26 -0800
commit6d8a69d64039f8a8e03fd83a0dd1ab08f50e8455 (patch)
tree5ef8668b0ff6625b2ecf1abf01e76dd58b7a58fb /sql/updates
parent67f686106d7d372d1ed652800582df15999d099c (diff)
parent83e3bf6d6d76156f36f3eaec28ef2244f9826fdf (diff)
Merge pull request #9099 from Bezo/mutenew
Add Mute reason and mute by to the db so you can get this info from the ...
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/auth/2013_xx_xx_00_auth_account.sql3
-rw-r--r--sql/updates/world/2013_xx_xx_00_world_trinity_string.sql4
2 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/auth/2013_xx_xx_00_auth_account.sql b/sql/updates/auth/2013_xx_xx_00_auth_account.sql
new file mode 100644
index 00000000000..9af73d41ee3
--- /dev/null
+++ b/sql/updates/auth/2013_xx_xx_00_auth_account.sql
@@ -0,0 +1,3 @@
+ALTER TABLE `account`
+ ADD COLUMN `mutereason` VARCHAR(255) NOT NULL DEFAULT '' AFTER `mutetime`,
+ ADD COLUMN `muteby` VARCHAR(50) NOT NULL DEFAULT '' AFTER `mutereason`;
diff --git a/sql/updates/world/2013_xx_xx_00_world_trinity_string.sql b/sql/updates/world/2013_xx_xx_00_world_trinity_string.sql
new file mode 100644
index 00000000000..0a4ec437b28
--- /dev/null
+++ b/sql/updates/world/2013_xx_xx_00_world_trinity_string.sql
@@ -0,0 +1,4 @@
+DELETE FROM `trinity_string` WHERE entry IN (300,550);
+INSERT INTO `trinity_string` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`) VALUES
+('300','Your chat has been disabled for %u minutes. By: %s ,Reason: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
+('550','Mute time remaining: %s, By: %s, Reason: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);