From 019576e3b9b69b4bf1e01bcb9b18b2edfff17f2f Mon Sep 17 00:00:00 2001 From: AnchyDev Date: Sun, 10 Mar 2024 13:03:45 +1100 Subject: [PATCH] Remove auto increment from wave groups table. --- data/sql/db-world/base/tos_world_base.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/sql/db-world/base/tos_world_base.sql b/data/sql/db-world/base/tos_world_base.sql index 76a6c5a..edbebdf 100644 --- a/data/sql/db-world/base/tos_world_base.sql +++ b/data/sql/db-world/base/tos_world_base.sql @@ -65,13 +65,13 @@ INSERT INTO `tos_reward_template` (`id`, `item_entry`, `count_min`, `count_max`, CREATE TABLE IF NOT EXISTS `tos_wave_groups` ( - `id` int NOT NULL AUTO_INCREMENT, + `id` int NOT NULL, `group` int DEFAULT NULL, `sub_group` int DEFAULT NULL, `creature` int DEFAULT NULL, `note` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; CREATE TABLE IF NOT EXISTS `tos_wave_template` (