diff options
author | Shauren <shauren.trinity@gmail.com> | 2014-10-26 10:40:29 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2014-10-26 10:40:29 +0100 |
commit | 0444c144bf949fd7e9bea23b55133b3fcd70452d (patch) | |
tree | 3393761c962c996eb6a72ab1eba215cbb7a30b33 /sql/base/dev | |
parent | a231777c509c3e4031a3256c16ca4915b8a91acc (diff) |
SQL: Changed creature_template.family to be unsigned
Diffstat (limited to 'sql/base/dev')
-rw-r--r-- | sql/base/dev/world_database.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/base/dev/world_database.sql b/sql/base/dev/world_database.sql index f8f8016c8a6..a91c1b5aece 100644 --- a/sql/base/dev/world_database.sql +++ b/sql/base/dev/world_database.sql @@ -533,7 +533,7 @@ CREATE TABLE `creature_template` ( `unit_flags` int(10) unsigned NOT NULL DEFAULT '0', `unit_flags2` int(10) unsigned NOT NULL DEFAULT '0', `dynamicflags` int(10) unsigned NOT NULL DEFAULT '0', - `family` tinyint(4) NOT NULL DEFAULT '0', + `family` tinyint(3) unsigned NOT NULL DEFAULT '0', `trainer_type` tinyint(4) NOT NULL DEFAULT '0', `trainer_class` tinyint(3) unsigned NOT NULL DEFAULT '0', `trainer_race` tinyint(3) unsigned NOT NULL DEFAULT '0', |