mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-26 03:42:37 +01:00
*Merge.
--HG-- branch : trunk
This commit is contained in:
1
sql/updates/4495_world_script.sql
Normal file
1
sql/updates/4495_world_script.sql
Normal file
@@ -0,0 +1 @@
|
||||
UPDATE `creature_template` SET `ScriptName`='mob_mojo' WHERE `entry`='24480';
|
||||
14
sql/updates/4498_characters_channels.sql
Normal file
14
sql/updates/4498_characters_channels.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for channels
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `channels`;
|
||||
CREATE TABLE `channels` (
|
||||
`m_name` text NOT NULL,
|
||||
`m_team` int(10) unsigned NOT NULL,
|
||||
`m_ownerGUID` int(11) unsigned NOT NULL default '0',
|
||||
`m_announce` tinyint(1) unsigned NOT NULL default '0',
|
||||
`m_moderate` tinyint(1) unsigned NOT NULL default '0',
|
||||
`m_password` text,
|
||||
`BannedList` longtext,
|
||||
PRIMARY KEY (`m_name`(10),`m_team`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Access Requirements';
|
||||
Reference in New Issue
Block a user