feat(DB): Release ACDB 9.0.0 (#16069)

* squishy
This commit is contained in:
Gultask 2023-04-25 01:48:38 -03:00 committed by GitHub
parent df77b5f4f7
commit 5ca6fe6fda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
785 changed files with 133828 additions and 126861 deletions

View file

@ -17,19 +17,17 @@
-- Dumping structure for table acore_auth.updates_include
DROP TABLE IF EXISTS `updates_include`;
CREATE TABLE IF NOT EXISTS `updates_include` (
`path` varchar(200) NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
`state` enum('RELEASED','ARCHIVED','CUSTOM') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
`path` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
`state` enum('RELEASED','ARCHIVED','CUSTOM') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
PRIMARY KEY (`path`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='List of directories where we want to include sql updates.';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of directories where we want to include sql updates.';
-- Dumping data for table acore_auth.updates_include: 3 rows
-- Dumping data for table acore_auth.updates_include: ~3 rows (approximately)
DELETE FROM `updates_include`;
/*!40000 ALTER TABLE `updates_include` DISABLE KEYS */;
INSERT INTO `updates_include` (`path`, `state`) VALUES
('$/data/sql/updates/db_auth', 'RELEASED'),
('$/data/sql/archive/db_auth', 'ARCHIVED'),
('$/data/sql/custom/db_auth', 'CUSTOM'),
('$/data/sql/archive/db_auth', 'ARCHIVED');
/*!40000 ALTER TABLE `updates_include` ENABLE KEYS */;
('$/data/sql/updates/db_auth', 'RELEASED');
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;