diff --git a/sql/custom/characters/characters.solocraft.sql b/sql/custom/characters/characters.solocraft.sql index 31ece38f6d4..ccf32003995 100644 --- a/sql/custom/characters/characters.solocraft.sql +++ b/sql/custom/characters/characters.solocraft.sql @@ -1,9 +1,9 @@ DROP TABLE IF EXISTS `custom_solocraft_character_stats`; CREATE TABLE IF NOT EXISTS `custom_solocraft_character_stats` ( - `GUID` int unsigned NOT NULL DEFAULT 0, + `GUID` bigint unsigned NOT NULL, `Difficulty` float NOT NULL, - `GroupSize` int unsigned NOT NULL DEFAULT 0, - `SpellPower` int unsigned NOT NULL DEFAULT 0, + `GroupSize` int NOT NULL, + `SpellPower` int unsigned NOT NULL DEFAULT '0', `Stats` float NOT NULL DEFAULT '100', PRIMARY KEY (`GUID`) ) ENGINE=InnoDB COLLATE='utf8mb4_general_ci';