diff --git a/common/database/database_update_manifest.cpp b/common/database/database_update_manifest.cpp index 7528b4b62..fe04be014 100644 --- a/common/database/database_update_manifest.cpp +++ b/common/database/database_update_manifest.cpp @@ -5230,6 +5230,17 @@ ALTER TABLE `merchantlist_temp` .match = "", .sql = R"( DROP TABLE IF EXISTS item_tick +)" + }, + ManifestEntry{ + .version = 9256, + .description = "2024_01_16_increase_spawngroup_size.sql", + .check = "SHOW COLUMNS FROM `spawngroup` LIKE 'name'", + .condition = "contains", + .match = "varchar(50)", + .sql = R"( +ALTER TABLE `spawngroup` +MODIFY COLUMN `name` varchar(200) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '' AFTER `id`; )" } // -- template; copy/paste this when you need to create a new entry diff --git a/common/version.h b/common/version.h index d1fc0b870..51541409a 100644 --- a/common/version.h +++ b/common/version.h @@ -42,7 +42,7 @@ * Manifest: https://github.com/EQEmu/Server/blob/master/utils/sql/db_update_manifest.txt */ -#define CURRENT_BINARY_DATABASE_VERSION 9255 +#define CURRENT_BINARY_DATABASE_VERSION 9256 #define CURRENT_BINARY_BOTS_DATABASE_VERSION 9041