Chronicle 4 branch.

This commit is contained in:
MobiusDev
2017-07-19 21:24:06 +00:00
parent 9a69bec286
commit 3a0bf3539a
13496 changed files with 641683 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS `heroes` (
`char_id` decimal(11,0) NOT NULL default '0',
`class_id` decimal(3,0) NOT NULL default '0',
`count` decimal(3,0) NOT NULL default '0',
`played` decimal(1,0) NOT NULL default '0',
PRIMARY KEY (`char_id`)
);