diff options
Diffstat (limited to 'sql/updates/world')
| -rw-r--r-- | sql/updates/world/2016_04_11_02_world.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/2016_04_11_02_world.sql b/sql/updates/world/2016_04_11_02_world.sql new file mode 100644 index 00000000000..2c362b80564 --- /dev/null +++ b/sql/updates/world/2016_04_11_02_world.sql @@ -0,0 +1,12 @@ +DROP TABLE IF EXISTS `blackmarket_template`; +CREATE TABLE `blackmarket_template` ( + `marketId` int(10) NOT NULL DEFAULT '0', + `sellerNpc` mediumint(8) NOT NULL DEFAULT '0', + `itemEntry` mediumint(8) unsigned NOT NULL DEFAULT '0', + `quantity` int(10) NOT NULL DEFAULT '1', + `minBid` bigint(20) unsigned NOT NULL DEFAULT '0', + `duration` int(10) NOT NULL DEFAULT '0', + `chance` float NOT NULL DEFAULT '0', + `bonusListIDs` text, + PRIMARY KEY (`marketId`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
