diff options
| author | Meji <alvaromegias_46@hotmail.com> | 2022-02-08 23:23:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-08 23:23:05 +0100 |
| commit | 27cba3f52309dad5be964fec11d80cd8cad128cf (patch) | |
| tree | 8ce682a72a850b37dba9cc4756e4b91fe532b142 /sql | |
| parent | 8e2d1e328ebec60c76d65651b268ec3ad2ce26fc (diff) | |
Core/Scripts: Added script hook to execute actions after completing an achievement (#27718)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2022_02_08_00_world.sql | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_02_08_00_world.sql b/sql/updates/world/master/2022_02_08_00_world.sql new file mode 100644 index 00000000000..c8078a19e6d --- /dev/null +++ b/sql/updates/world/master/2022_02_08_00_world.sql @@ -0,0 +1,24 @@ +-- +-- Table structure for table `achievement_scripts` +-- + +DROP TABLE IF EXISTS `achievement_scripts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `achievement_scripts` ( + `AchievementId` int NOT NULL, + `ScriptName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`AchievementId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `achievement_scripts` +-- +LOCK TABLES `achievement_scripts` WRITE; +/*!40000 ALTER TABLE `achievement_scripts` DISABLE KEYS */; +INSERT INTO `achievement_scripts` (`AchievementId`, `ScriptName`) VALUES +(6566,'achievement_just_a_pup'), +(7433,'achievement_newbie'); +/*!40000 ALTER TABLE `achievement_scripts` ENABLE KEYS */; +UNLOCK TABLES; |
