mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-03 21:56:36 +00:00
svn -> git Migration
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user