diff options
Diffstat (limited to 'sql/updates/0.7/3350_command.sql')
-rw-r--r-- | sql/updates/0.7/3350_command.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/0.7/3350_command.sql b/sql/updates/0.7/3350_command.sql new file mode 100644 index 00000000000..eecf98014c5 --- /dev/null +++ b/sql/updates/0.7/3350_command.sql @@ -0,0 +1,7 @@ +DELETE FROM `command` WHERE `name` = 'item'; +DELETE FROM `command` WHERE `name` = 'itemrmv'; +DELETE FROM `command` WHERE `name` = 'addvendoritem'; +DELETE FROM `command` WHERE `name` = 'delvendoritem'; + +INSERT INTO `command` VALUES('addvendoritem',2,'Syntax: .addvendoritem #itemId <#maxcount><#incrtime>\r\n\r\nAdd item #itemid to item list of selected vendor. Also optionally set max count item in vendor item list and time to item count restoring.'); +INSERT INTO `command` VALUES('delvendoritem',2,'Syntax: .delvendoritem #itemId\r\n\r\nRemove item #itemid from item list of selected vendor.'); |