summaryrefslogblamecommitdiff
path: root/sql-files/upgrade_svn1759.sql
blob: 281cef6c99597dc18fb694afc26dca1d5be8c20f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                         
CREATE TABLE `chatlog` (
  `id` bigint(20) NOT NULL auto_increment,
  `time` datetime NOT NULL default '0000-00-00 00:00:00',
  `type` enum('W','P','G') NOT NULL default 'W',
  `type_id` int(11) NOT NULL default '0',
  `src_charid` int(11) NOT NULL default '0',
  `src_accountid` int(11) NOT NULL default '0',
  `src_map` varchar(17) NOT NULL default '',
  `src_map_x` tinyint(4) NOT NULL default '0',
  `src_map_y` tinyint(4) NOT NULL default '0',
  `dst_charname` varchar(25) NOT NULL default '',
  `message` varchar(150) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 ;