mirror of
https://github.com/araxiaonline/mod-azerothshard.git
synced 2026-06-13 01:32:21 -04:00
9 lines
261 B
SQL
9 lines
261 B
SQL
DROP TABLE IF EXISTS `azth_character_morph`;
|
|
CREATE TABLE `azth_character_morph`(
|
|
`guid` INT NOT NULL,
|
|
`entry` INT NOT NULL,
|
|
`name` TEXT,
|
|
`comment` TEXT
|
|
);
|
|
ALTER TABLE `azth_character_morph`
|
|
ADD CONSTRAINT `azth_character_morph` UNIQUE(guid, entry); |