diff options
| author | Anubisss <none@none> | 2009-07-21 21:16:30 +0200 |
|---|---|---|
| committer | Anubisss <none@none> | 2009-07-21 21:16:30 +0200 |
| commit | a00473d79510f80ae1fd6b4ed882d0e696c22659 (patch) | |
| tree | 93d4b4fcd1dde50b64eb117ed123ee253b99abe7 | |
| parent | 56d2bfa56f3533e45db79e322b28f72d0337a99b (diff) | |
*Add table channels to characters.sql
--HG--
branch : trunk
| -rw-r--r-- | sql/characters.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/characters.sql b/sql/characters.sql index 793e42d2aea..f172df5b006 100644 --- a/sql/characters.sql +++ b/sql/characters.sql @@ -267,6 +267,21 @@ LOCK TABLES `bugreport` WRITE; /*!40000 ALTER TABLE `bugreport` ENABLE KEYS */; UNLOCK TABLES; +-- ---------------------------- +-- 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'; + -- -- Table structure for table `characters` -- |
