Local snapshot for Docker build (includes mod-ale)
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,99 @@
|
||||
-- MySQL dump 10.13 Distrib 8.4.3, for Win64 (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: acore_world
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 8.4.3
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!50503 SET NAMES utf8mb4 */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `spell_pet_auras`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `spell_pet_auras`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `spell_pet_auras` (
|
||||
`spell` int unsigned NOT NULL COMMENT 'dummy spell id',
|
||||
`effectId` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`pet` int unsigned NOT NULL DEFAULT '0' COMMENT 'pet id; 0 = all',
|
||||
`aura` int unsigned NOT NULL COMMENT 'pet aura id',
|
||||
PRIMARY KEY (`spell`,`effectId`,`pet`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `spell_pet_auras`
|
||||
--
|
||||
|
||||
LOCK TABLES `spell_pet_auras` WRITE;
|
||||
/*!40000 ALTER TABLE `spell_pet_auras` DISABLE KEYS */;
|
||||
INSERT INTO `spell_pet_auras` VALUES
|
||||
(19028,0,0,25228),
|
||||
(19578,0,0,19579),
|
||||
(20895,0,0,24529),
|
||||
(23785,0,416,23759),
|
||||
(23785,0,417,23762),
|
||||
(23785,0,1860,23760),
|
||||
(23785,0,1863,23761),
|
||||
(23785,0,17252,35702),
|
||||
(23822,0,416,23826),
|
||||
(23822,0,417,23837),
|
||||
(23822,0,1860,23841),
|
||||
(23822,0,1863,23833),
|
||||
(23822,0,17252,35703),
|
||||
(23823,0,416,23827),
|
||||
(23823,0,417,23838),
|
||||
(23823,0,1860,23842),
|
||||
(23823,0,1863,23834),
|
||||
(23823,0,17252,35704),
|
||||
(23824,0,416,23828),
|
||||
(23824,0,417,23839),
|
||||
(23824,0,1860,23843),
|
||||
(23824,0,1863,23835),
|
||||
(23824,0,17252,35705),
|
||||
(23825,0,416,23829),
|
||||
(23825,0,417,23840),
|
||||
(23825,0,1860,23844),
|
||||
(23825,0,1863,23836),
|
||||
(23825,0,17252,35706),
|
||||
(28757,0,0,28758),
|
||||
(34453,1,0,68361),
|
||||
(34454,1,0,68361),
|
||||
(34455,0,0,75593),
|
||||
(34459,0,0,75446),
|
||||
(34460,0,0,75447),
|
||||
(35029,0,0,35060),
|
||||
(35030,0,0,35061),
|
||||
(35691,0,0,35696),
|
||||
(35692,0,0,35696),
|
||||
(35693,0,0,35696),
|
||||
(56314,0,0,57447),
|
||||
(56314,1,0,57485),
|
||||
(56315,0,0,57452),
|
||||
(56315,1,0,57484),
|
||||
(56316,0,0,57453),
|
||||
(56316,1,0,57483),
|
||||
(56317,0,0,57457),
|
||||
(56317,1,0,57482),
|
||||
(56318,0,0,57458),
|
||||
(56318,1,0,57475);
|
||||
/*!40000 ALTER TABLE `spell_pet_auras` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2026-03-15 20:39:19
|
||||
Reference in New Issue
Block a user