mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
[10550] Fixed field types in mangos.sql in consistant with related sql updates.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
dcb451e16a
commit
138ee2776e
2 changed files with 3 additions and 3 deletions
|
|
@ -1024,7 +1024,7 @@ CREATE TABLE `creature_movement` (
|
|||
`position_y` float NOT NULL default '0',
|
||||
`position_z` float NOT NULL default '0',
|
||||
`waittime` int(10) unsigned NOT NULL default '0',
|
||||
`script_id` int(10) unsigned NOT NULL default '0',
|
||||
`script_id` mediumint(8) unsigned NOT NULL default '0',
|
||||
`textid1` int(11) NOT NULL default '0',
|
||||
`textid2` int(11) NOT NULL default '0',
|
||||
`textid3` int(11) NOT NULL default '0',
|
||||
|
|
@ -2226,7 +2226,7 @@ CREATE TABLE `item_template` (
|
|||
`displayid` mediumint(8) unsigned NOT NULL default '0',
|
||||
`Quality` tinyint(3) unsigned NOT NULL default '0',
|
||||
`Flags` int(10) unsigned NOT NULL default '0',
|
||||
`Flags2` int(11) unsigned NOT NULL default '0',
|
||||
`Flags2` int(10) unsigned NOT NULL default '0',
|
||||
`BuyCount` tinyint(3) unsigned NOT NULL default '1',
|
||||
`BuyPrice` int(10) unsigned NOT NULL default '0',
|
||||
`SellPrice` int(10) unsigned NOT NULL default '0',
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "10549"
|
||||
#define REVISION_NR "10550"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue