mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 05:21:29 +00:00
42 lines
1.5 KiB
SQL
42 lines
1.5 KiB
SQL
-- 'drop_bots' sql script file
|
|
-- current as of 10/15/2014
|
|
--
|
|
-- Note: This file will revert all changes made by either 'load_bots' sql file.
|
|
-- There may still be remnants of bot activity in tables `guild_members` and
|
|
-- `group_id`. If these entries are causing issues, you may need to manually
|
|
-- remove them.
|
|
--
|
|
-- If this script fails due to a 'SQL Error (1068): Multiple primary key defined'
|
|
-- error, run this query: ALTER TABLE `guild_members` DROP PRIMARY KEY;
|
|
-- and it should remove the key so this script will process in its entirety.
|
|
|
|
|
|
ALTER TABLE `guild_members` ADD PRIMARY KEY (`char_id`);
|
|
ALTER TABLE `group_id` DROP PRIMARY KEY, ADD PRIMARY KEY (`groupid`, `charid`, `ismerc`);
|
|
|
|
UPDATE `spawn2` SET `enabled` = 0 WHERE `id` IN (59297,59298);
|
|
|
|
DELETE FROM `commands` WHERE `command` = 'bot';
|
|
DELETE FROM `rule_values` WHERE `rule_name` LIKE 'Bots%';
|
|
|
|
DROP VIEW IF EXISTS `vwBotCharacterMobs`;
|
|
DROP VIEW IF EXISTS `vwBotGroups`;
|
|
DROP VIEW IF EXISTS `vwGroups`;
|
|
DROP VIEW IF EXISTS `vwGuildMembers`;
|
|
|
|
DROP FUNCTION IF EXISTS `GetMobType`;
|
|
|
|
DROP TABLE IF EXISTS `botguildmembers`;
|
|
DROP TABLE IF EXISTS `botgroupmembers`;
|
|
-- this table is not a part of 'load_bots.sql'
|
|
DROP TABLE IF EXISTS `botgroups`;
|
|
DROP TABLE IF EXISTS `botgroup`;
|
|
DROP TABLE IF EXISTS `botpetinventory`;
|
|
DROP TABLE IF EXISTS `botpetbuffs`;
|
|
DROP TABLE IF EXISTS `botpets`;
|
|
DROP TABLE IF EXISTS `botinventory`;
|
|
DROP TABLE IF EXISTS `botbuffs`;
|
|
DROP TABLE IF EXISTS `bottimers`;
|
|
DROP TABLE IF EXISTS `botstances`;
|
|
DROP TABLE IF EXISTS `bots`;
|