Core/Gossips: Make MenuID/OptionID consistently use uint32 types (#165)

This commit is contained in:
Roc13x
2020-08-04 09:14:47 +01:00
committed by GitHub
parent 31b6b77200
commit 8669b5d22c
5 changed files with 22 additions and 17 deletions

View File

@@ -0,0 +1,7 @@
ALTER TABLE `gossip_menu_option_locale`
CHANGE `MenuID` `MenuID` int(11) unsigned NOT NULL DEFAULT '0',
CHANGE `OptionID` `OptionID` int(11) unsigned NOT NULL DEFAULT '0';
ALTER TABLE `gossip_menu`
CHANGE `MenuID` `MenuID` int(11) unsigned NOT NULL DEFAULT '0',
CHANGE `TextID` `TextID` int(11) unsigned NOT NULL DEFAULT '0';