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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
739 changed files with 197091 additions and 167873 deletions

View file

@ -15,18 +15,18 @@
-- Dumpar struktur för tabell acore_characters.mail_server_template
DROP TABLE IF EXISTS `mail_server_template`;
CREATE TABLE IF NOT EXISTS `mail_server_template` (
`id` INT unsigned NOT NULL AUTO_INCREMENT,
`reqLevel` TINYINT unsigned NOT NULL DEFAULT 0,
`reqPlayTime` INT unsigned NOT NULL DEFAULT 0,
`moneyA` INT unsigned NOT NULL DEFAULT 0,
`moneyH` INT unsigned NOT NULL DEFAULT 0,
`itemA` INT unsigned NOT NULL DEFAULT 0,
`itemCountA` INT unsigned NOT NULL DEFAULT 0,
`itemH` INT unsigned NOT NULL DEFAULT 0,
`itemCountH` INT unsigned NOT NULL DEFAULT 0,
`id` int unsigned NOT NULL AUTO_INCREMENT,
`reqLevel` tinyint unsigned NOT NULL DEFAULT '0',
`reqPlayTime` int unsigned NOT NULL DEFAULT '0',
`moneyA` int unsigned NOT NULL DEFAULT '0',
`moneyH` int unsigned NOT NULL DEFAULT '0',
`itemA` int unsigned NOT NULL DEFAULT '0',
`itemCountA` int unsigned NOT NULL DEFAULT '0',
`itemH` int unsigned NOT NULL DEFAULT '0',
`itemCountH` int unsigned NOT NULL DEFAULT '0',
`subject` text NOT NULL,
`body` text NOT NULL,
`active` TINYINT unsigned NOT NULL DEFAULT 1,
`active` tinyint unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;