forked from zephyrus-cr/eamod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logs-extras.sql
23 lines (23 loc) · 897 Bytes
/
logs-extras.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DROP TABLE IF EXISTS `picklog`;
CREATE TABLE `picklog` (
`id` int(11) NOT NULL auto_increment,
`time` datetime NOT NULL default '0000-00-00 00:00:00',
`account_id` int(11) NOT NULL default '0',
`char_id` int(11) NOT NULL default '0',
`name` varchar(25) NOT NULL,
`type` enum('M','P','L','T','V','S','N','C','A','R','G','E') NOT NULL default 'P',
`nameid` int(11) NOT NULL default '0',
`amount` int(11) NOT NULL default '1',
`refine` tinyint(3) unsigned NOT NULL default '0',
`card0` int(11) NOT NULL default '0',
`card1` int(11) NOT NULL default '0',
`card2` int(11) NOT NULL default '0',
`card3` int(11) NOT NULL default '0',
`map` varchar(11) NOT NULL default '',
`serial` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `type` (`type`),
KEY `account_id` (`account_id`),
KEY `char_id` (`char_id`),
KEY `nameid` (`nameid`)
) ENGINE=MyISAM;