release: DB squash & begin AC 4.0.0 development (#4341)

This commit is contained in:
Francesco Borzì 2021-01-25 19:51:22 +01:00 committed by GitHub
parent 2d609e9e48
commit 49712bd12f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1014 changed files with 601786 additions and 462701 deletions

View file

@ -9,15 +9,15 @@ DROP TABLE IF EXISTS `guild_bank_eventlog`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_bank_eventlog`
(
`guildid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Guild Identificator',
`LogGuid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Log record identificator - auxiliary column',
`TabId` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Guild bank TabId',
`EventType` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Event type',
`PlayerGuid` int(10) unsigned NOT NULL DEFAULT '0',
`ItemOrMoney` int(10) unsigned NOT NULL DEFAULT '0',
`ItemStackCount` smallint(5) unsigned NOT NULL DEFAULT '0',
`DestTabId` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Destination Tab Id',
`TimeStamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Event UNIX time',
`guildid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Guild Identificator',
`LogGuid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Log record identificator - auxiliary column',
`TabId` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Guild bank TabId',
`EventType` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Event type',
`PlayerGuid` int(10) unsigned NOT NULL DEFAULT 0,
`ItemOrMoney` int(10) unsigned NOT NULL DEFAULT 0,
`ItemStackCount` smallint(5) unsigned NOT NULL DEFAULT 0,
`DestTabId` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Destination Tab Id',
`TimeStamp` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Event UNIX time',
PRIMARY KEY (`guildid`,`LogGuid`,`TabId`),
KEY `guildid_key` (`guildid`),
KEY `Idx_PlayerGuid` (`PlayerGuid`),