diff options
| author | Brian <runningnak3d@gmail.com> | 2010-01-30 07:14:34 -0700 |
|---|---|---|
| committer | Brian <runningnak3d@gmail.com> | 2010-01-30 07:14:34 -0700 |
| commit | 50f0279bdb031392d636e656d6f6d645170f646c (patch) | |
| tree | 733b1e736f7893c926297ed58b2dd56f26d9d2a8 /sql/updates | |
| parent | 3c4db4786c780180cb590423fe15fbdc14df51a7 (diff) | |
* Set auto increment values for creature and gameobject GUIDs outside of TDB
ranges.
* All custom content should have GUIDs > 250000 for `creature` and GUIDs >
200000 for `gameobject`
--HG--
branch : trunk
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/7252_world_creature.sql | 1 | ||||
| -rw-r--r-- | sql/updates/7252_world_gameobject.sql | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/7252_world_creature.sql b/sql/updates/7252_world_creature.sql new file mode 100644 index 00000000000..1079df7d0fb --- /dev/null +++ b/sql/updates/7252_world_creature.sql @@ -0,0 +1 @@ +ALTER TABLE `creature` AUTO_INCREMENT=250001; diff --git a/sql/updates/7252_world_gameobject.sql b/sql/updates/7252_world_gameobject.sql new file mode 100644 index 00000000000..bbd83553cf3 --- /dev/null +++ b/sql/updates/7252_world_gameobject.sql @@ -0,0 +1 @@ +ALTER TABLE `gameobject` AUTO_INCREMENT=200001; |
