mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
7 lines
No EOL
300 B
SQL
7 lines
No EOL
300 B
SQL
DROP TABLE IF EXISTS `character_kill`;
|
|
CREATE TABLE `character_kill` (
|
|
`guid` int(11) NOT NULL default '0',
|
|
`victim_guid` int(11) NOT NULL default '0',
|
|
`count` tinyint(3) NOT NULL default '0',
|
|
PRIMARY KEY (`guid`,`victim_guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Kills Yesterday'; |