Skip to content

Commit

Permalink
Remove auto increment from wave groups table.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnchyDev committed Mar 10, 2024
1 parent 4a7068c commit 019576e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/sql/db-world/base/tos_world_base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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` (
Expand Down

0 comments on commit 019576e

Please sign in to comment.