feat(DB): Release ACDB 10.0.0 (#18197)
* move archived files into old dir * auth * characters * world * mistake * revert some stuff * Squash time! * newline
This commit is contained in:
parent
f60fb6307d
commit
7f7f18e489
408 changed files with 301100 additions and 294504 deletions
|
|
@ -1,8 +1,8 @@
|
|||
-- --------------------------------------------------------
|
||||
-- Host: 127.0.0.1
|
||||
-- Server version: 8.0.29 - MySQL Community Server - GPL
|
||||
-- Server version: 8.1.0 - MySQL Community Server - GPL
|
||||
-- Server OS: Win64
|
||||
-- HeidiSQL Version: 12.0.0.6468
|
||||
-- HeidiSQL Version: 12.3.0.6589
|
||||
-- --------------------------------------------------------
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
|
|
@ -20,8 +20,8 @@ CREATE TABLE IF NOT EXISTS `gm_ticket` (
|
|||
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
`type` tinyint unsigned NOT NULL DEFAULT '0' COMMENT '0 open, 1 closed, 2 character deleted',
|
||||
`playerGuid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier of ticket creator',
|
||||
`name` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of ticket creator',
|
||||
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`name` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of ticket creator',
|
||||
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`createTime` int unsigned NOT NULL DEFAULT '0',
|
||||
`mapId` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`posX` float NOT NULL DEFAULT '0',
|
||||
|
|
@ -30,8 +30,8 @@ CREATE TABLE IF NOT EXISTS `gm_ticket` (
|
|||
`lastModifiedTime` int unsigned NOT NULL DEFAULT '0',
|
||||
`closedBy` int NOT NULL DEFAULT '0' COMMENT '-1 Closed by Console, >0 GUID of GM',
|
||||
`assignedTo` int unsigned NOT NULL DEFAULT '0' COMMENT 'GUID of admin to whom ticket is assigned',
|
||||
`comment` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`response` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`completed` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`escalated` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`viewed` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue