mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
[Database] Increase max spawngroup name from 50 to 200 (#3991)
This commit is contained in:
parent
3fb24dc0a3
commit
ca1299bf1d
@ -5230,6 +5230,17 @@ ALTER TABLE `merchantlist_temp`
|
|||||||
.match = "",
|
.match = "",
|
||||||
.sql = R"(
|
.sql = R"(
|
||||||
DROP TABLE IF EXISTS item_tick
|
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
|
// -- template; copy/paste this when you need to create a new entry
|
||||||
|
|||||||
@ -42,7 +42,7 @@
|
|||||||
* Manifest: https://github.com/EQEmu/Server/blob/master/utils/sql/db_update_manifest.txt
|
* 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
|
#define CURRENT_BINARY_BOTS_DATABASE_VERSION 9041
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user