feat(DB): Release ACDB 13.0.0 (#22508)

This commit is contained in:
Kitzunu 2025-07-19 13:16:46 +02:00 committed by GitHub
parent 3ca377fed3
commit 129434bb42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
425 changed files with 23378 additions and 33679 deletions

View file

@ -1,8 +1,8 @@
-- MySQL dump 10.13 Distrib 8.0.34, for Win64 (x86_64)
-- MySQL dump 10.13 Distrib 8.4.3, for Win64 (x86_64)
--
-- Host: 127.0.0.1 Database: acore_auth
-- Host: localhost Database: acore_auth
-- ------------------------------------------------------
-- Server version 8.0.34
-- Server version 8.4.3
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@ -22,7 +22,7 @@ DROP TABLE IF EXISTS `updates_include`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `updates_include` (
`path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
`state` enum('RELEASED','ARCHIVED','CUSTOM') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
`state` enum('RELEASED','ARCHIVED','CUSTOM','PENDING') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
PRIMARY KEY (`path`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of directories where we want to include sql updates.';
/*!40101 SET character_set_client = @saved_cs_client */;
@ -36,7 +36,8 @@ LOCK TABLES `updates_include` WRITE;
INSERT INTO `updates_include` VALUES
('$/data/sql/archive/db_auth','ARCHIVED'),
('$/data/sql/custom/db_auth','CUSTOM'),
('$/data/sql/updates/db_auth','RELEASED');
('$/data/sql/updates/db_auth','RELEASED'),
('$/data/sql/updates/pending_db_auth','PENDING');
/*!40000 ALTER TABLE `updates_include` ENABLE KEYS */;
UNLOCK TABLES;
@ -48,5 +49,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-12-17 22:32:57
-- Dump completed on 2025-07-19 12:10:22