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,19 +15,19 @@
-- Dumpar struktur för tabell acore_characters.item_instance
DROP TABLE IF EXISTS `item_instance`;
CREATE TABLE IF NOT EXISTS `item_instance` (
`guid` INT unsigned NOT NULL DEFAULT 0,
`itemEntry` MEDIUMINT unsigned NOT NULL DEFAULT 0,
`owner_guid` INT unsigned NOT NULL DEFAULT 0,
`creatorGuid` INT unsigned NOT NULL DEFAULT 0,
`giftCreatorGuid` INT unsigned NOT NULL DEFAULT 0,
`count` INT unsigned NOT NULL DEFAULT 1,
`duration` INT NOT NULL DEFAULT 0,
`guid` int unsigned NOT NULL DEFAULT '0',
`itemEntry` mediumint unsigned NOT NULL DEFAULT '0',
`owner_guid` int unsigned NOT NULL DEFAULT '0',
`creatorGuid` int unsigned NOT NULL DEFAULT '0',
`giftCreatorGuid` int unsigned NOT NULL DEFAULT '0',
`count` int unsigned NOT NULL DEFAULT '1',
`duration` int NOT NULL DEFAULT '0',
`charges` tinytext,
`flags` MEDIUMINT unsigned NOT NULL DEFAULT 0,
`flags` mediumint unsigned NOT NULL DEFAULT '0',
`enchantments` text NOT NULL,
`randomPropertyId` SMALLINT NOT NULL DEFAULT 0,
`durability` SMALLINT unsigned NOT NULL DEFAULT 0,
`playedTime` INT unsigned NOT NULL DEFAULT 0,
`randomPropertyId` smallint NOT NULL DEFAULT '0',
`durability` smallint unsigned NOT NULL DEFAULT '0',
`playedTime` int unsigned NOT NULL DEFAULT '0',
`text` text,
PRIMARY KEY (`guid`),
KEY `idx_owner_guid` (`owner_guid`)