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,10 +15,10 @@
|
||||
-- Dumpar struktur för tabell acore_characters.petition
|
||||
DROP TABLE IF EXISTS `petition`;
|
||||
CREATE TABLE IF NOT EXISTS `petition` (
|
||||
`ownerguid` INT unsigned NOT NULL,
|
||||
`petitionguid` INT unsigned DEFAULT 0,
|
||||
`name` VARCHAR(24) NOT NULL,
|
||||
`type` TINYINT unsigned NOT NULL DEFAULT 0,
|
||||
`ownerguid` int unsigned NOT NULL,
|
||||
`petitionguid` int unsigned DEFAULT '0',
|
||||
`name` varchar(24) NOT NULL,
|
||||
`type` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ownerguid`,`type`),
|
||||
UNIQUE KEY `index_ownerguid_petitionguid` (`ownerguid`,`petitionguid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild System';
|
||||
|
||||
Reference in New Issue
Block a user