mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
feat(DB): release ACDB 7.0.0 (#12811)
* feat(DB): release ACDB 7.0.0 * cleanup * we try sourcery
This commit is contained in:
@@ -15,11 +15,11 @@
|
||||
-- Dumpar struktur för tabell acore_characters.instance
|
||||
DROP TABLE IF EXISTS `instance`;
|
||||
CREATE TABLE IF NOT EXISTS `instance` (
|
||||
`id` INT unsigned NOT NULL DEFAULT 0,
|
||||
`map` SMALLINT unsigned NOT NULL DEFAULT 0,
|
||||
`resettime` INT unsigned NOT NULL DEFAULT 0,
|
||||
`difficulty` TINYINT unsigned NOT NULL DEFAULT 0,
|
||||
`completedEncounters` INT unsigned NOT NULL DEFAULT 0,
|
||||
`id` int unsigned NOT NULL DEFAULT '0',
|
||||
`map` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`resettime` int unsigned NOT NULL DEFAULT '0',
|
||||
`difficulty` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`completedEncounters` int unsigned NOT NULL DEFAULT '0',
|
||||
`data` tinytext NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `map` (`map`),
|
||||
|
||||
Reference in New Issue
Block a user