Skip to content

Commit

Permalink
client-data: change areatable ids to int
Browse files Browse the repository at this point in the history
  • Loading branch information
shagu committed Dec 20, 2023
1 parent 767167f commit cde7d56
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions toolbox/client-data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2583,7 +2583,7 @@ UPDATE `SkillLine_vanilla` SET name_loc8 = "Питомец - управлени
UPDATE `SkillLine_vanilla` SET name_loc8 = "Верховая езда" WHERE id = 762;
DROP TABLE IF EXISTS `AreaTable_vanilla`;
CREATE TABLE `AreaTable_vanilla` (
`id` smallint(3) unsigned NOT NULL,
`id` int(3) unsigned NOT NULL,
`zoneID` smallint(3) unsigned NOT NULL,
`name_loc0` varchar(255) NOT NULL,
`name_loc1` varchar(255) NOT NULL,
Expand Down Expand Up @@ -14216,7 +14216,7 @@ UPDATE `SkillLine_turtle` SET name_loc8 = "ZMounts" WHERE id = 1006;
UPDATE `SkillLine_turtle` SET name_loc8 = "ZzzGlyphs" WHERE id = 1007;
DROP TABLE IF EXISTS `AreaTable_turtle`;
CREATE TABLE `AreaTable_turtle` (
`id` smallint(3) unsigned NOT NULL,
`id` int(3) unsigned NOT NULL,
`zoneID` smallint(3) unsigned NOT NULL,
`name_loc0` varchar(255) NOT NULL,
`name_loc1` varchar(255) NOT NULL,
Expand Down Expand Up @@ -29213,7 +29213,7 @@ UPDATE `SkillLine_tbc` SET name_loc8 = "Питомец: змей" WHERE id = 768
UPDATE `SkillLine_tbc` SET name_loc8 = "Внутренний" WHERE id = 769;
DROP TABLE IF EXISTS `AreaTable_tbc`;
CREATE TABLE `AreaTable_tbc` (
`id` smallint(3) unsigned NOT NULL,
`id` int(3) unsigned NOT NULL,
`zoneID` smallint(3) unsigned NOT NULL,
`name_loc0` varchar(255) NOT NULL,
`name_loc1` varchar(255) NOT NULL,
Expand Down Expand Up @@ -42439,7 +42439,7 @@ CREATE TABLE `SkillLine_wotlk` (

DROP TABLE IF EXISTS `AreaTable_wotlk`;
CREATE TABLE `AreaTable_wotlk` (
`id` smallint(3) unsigned NOT NULL,
`id` int(3) unsigned NOT NULL,
`zoneID` smallint(3) unsigned NOT NULL,
`name_loc0` varchar(255) NOT NULL,
`name_loc1` varchar(255) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion toolbox/load-client-data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ function AreaTable() {
cat >> $rootsql << EOF
DROP TABLE IF EXISTS \`AreaTable_${v}\`;
CREATE TABLE \`AreaTable_${v}\` (
\`id\` smallint(3) unsigned NOT NULL,
\`id\` int(3) unsigned NOT NULL,
\`zoneID\` smallint(3) unsigned NOT NULL,
\`name_loc0\` varchar(255) NOT NULL,
\`name_loc1\` varchar(255) NOT NULL,
Expand Down

0 comments on commit cde7d56

Please sign in to comment.