aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/4498_characters_channels.sql
blob: a56499768d032a3dc132e594e8913220d87fe945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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='Channel System';