summaryrefslogtreecommitdiff
path: root/sql-files/upgrades/2013-12-24--00-15.sql
blob: 2de4771a6f5b5f0b241e4fc93c13a7300b72a28c (plain) (blame)
1
2
3
4
5
6
7
8
#1387844126
CREATE TABLE IF NOT EXISTS `npc_market_data` (
  `name` VARCHAR(24) NOT NULL DEFAULT '',
  `itemid` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  `amount` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  PRIMARY KEY (`name`,`itemid`)
) ENGINE=MyISAM;
INSERT INTO `sql_updates` (`timestamp`) VALUES (1387844126);