feat(DB): release ACDB 7.0.0 (#12811)

* feat(DB): release ACDB 7.0.0

* cleanup

* we try sourcery
This commit is contained in:
Kitzunu
2022-08-21 12:31:37 +02:00
committed by GitHub
parent 4cd3b9c203
commit 3daa8e2146
739 changed files with 197091 additions and 167873 deletions

View File

@@ -15,13 +15,13 @@
-- Dumpar struktur för tabell acore_characters.channels
DROP TABLE IF EXISTS `channels`;
CREATE TABLE IF NOT EXISTS `channels` (
`channelId` INT unsigned NOT NULL AUTO_INCREMENT,
`name` VARCHAR(128) NOT NULL,
`team` INT unsigned NOT NULL,
`announce` TINYINT unsigned NOT NULL DEFAULT 1,
`ownership` TINYINT unsigned NOT NULL DEFAULT 1,
`password` VARCHAR(32) DEFAULT NULL,
`lastUsed` INT unsigned NOT NULL,
`channelId` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`team` int unsigned NOT NULL,
`announce` tinyint unsigned NOT NULL DEFAULT '1',
`ownership` tinyint unsigned NOT NULL DEFAULT '1',
`password` varchar(32) DEFAULT NULL,
`lastUsed` int unsigned NOT NULL,
PRIMARY KEY (`channelId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Channel System';