upgrade_svn1759.sql 606 B

123456789101112131415161718
  1. CREATE TABLE `chatlog` (
  2. `id` bigint(20) NOT NULL auto_increment,
  3. `time` datetime NOT NULL default '0000-00-00 00:00:00',
  4. `type` enum('W','P','G') NOT NULL default 'W',
  5. `type_id` int(11) NOT NULL default '0',
  6. `src_charid` int(11) NOT NULL default '0',
  7. `src_accountid` int(11) NOT NULL default '0',
  8. `src_map` varchar(17) NOT NULL default '',
  9. `src_map_x` tinyint(4) NOT NULL default '0',
  10. `src_map_y` tinyint(4) NOT NULL default '0',
  11. `dst_charname` varchar(25) NOT NULL default '',
  12. `message` varchar(150) NOT NULL default '',
  13. PRIMARY KEY (`id`)
  14. ) ENGINE=MyISAM AUTO_INCREMENT=1 ;