server/sql/updates/0.5/1526_npc_vendor.sql
freghar 95840fd2c3 Removed trailing whitespaces and CRLFs
With /contrib/ and /dep/ excluded.

Signed-off-by: freghar <compmancz@gmail.com>
2008-10-22 11:52:03 +02:00

9 lines
455 B
SQL

ALTER TABLE `npc_vendor`
DROP PRIMARY KEY,
DROP KEY `vendor_id` ,
DROP `index_id`,
CHANGE `entry` `entry` int(11) unsigned NOT NULL default '0',
CHANGE `itemguid` `item` int(11) unsigned NOT NULL default '0',
CHANGE `amount` `buycount` int(11) unsigned NOT NULL default '1',
ADD `maxcount` int(11) unsigned NOT NULL default '0',
ADD `incrtime` int(11) unsigned NOT NULL default '0';