svn -> git Migration

This commit is contained in:
KimLS
2013-02-16 16:14:39 -08:00
parent 88c9715fb0
commit da7347f76f
1174 changed files with 445622 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
DROP TABLE IF EXISTS `buyer`;
CREATE TABLE `buyer` (
`charid` int(11) NOT NULL,
`buyslot` int(11) NOT NULL,
`itemid` int(11) NOT NULL,
`itemname` varchar(65) NOT NULL,
`quantity` int(11) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`charid`,`buyslot`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
ALTER TABLE `trader_audit` ADD `trantype` TINYINT NOT NULL DEFAULT '0';