forked from azerothcore/azerothcore-wotlk
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the db_characters SQL files relating to NPC Bots. - Updated charset to utf8mb4. - Added collate utf8mb_unicode_ci. - Added comments. - Replaced /custom SQL files with top level SQL files.
- Loading branch information
1 parent
1801baa
commit f2dca29
Showing
12 changed files
with
36 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
data/sql/base/db_characters/characters_npcbot_gear_storage.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
-- | ||
SET FOREIGN_KEY_CHECKS=0; | ||
-- ---------------------------- | ||
-- Table structure for characters_npcbot_gear_storage | ||
-- ---------------------------- | ||
DROP TABLE IF EXISTS `characters_npcbot_gear_storage`; | ||
CREATE TABLE `characters_npcbot_gear_storage` ( | ||
`guid` int(10) unsigned NOT NULL DEFAULT '0', | ||
`item_guid` int(10) unsigned NOT NULL DEFAULT '0', | ||
PRIMARY KEY (`item_guid`), | ||
KEY `existing_player` (`guid`), | ||
CONSTRAINT `FK_npcbot_gear_storage_item_guid` FOREIGN KEY (`item_guid`) REFERENCES `item_instance` (`guid`) ON DELETE CASCADE ON UPDATE CASCADE, | ||
CONSTRAINT `FK_npcbot_gear_storage_guid` FOREIGN KEY (`guid`) REFERENCES `characters` (`guid`) ON DELETE CASCADE ON UPDATE CASCADE | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='NPC Bot Gear Storage System'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
data/sql/custom/db_characters/2023_05_16_00_characters_npcbot_gear_storage.sql
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
data/sql/custom/db_characters/2023_05_26_00_characters_npcbot_transmog.sql
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
data/sql/custom/db_characters/2024_03_12_00_characters_npcbot.sql
This file was deleted.
Oops, something went wrong.