From e29ce1d82f5132b7e68e7468915904489c454416 Mon Sep 17 00:00:00 2001 From: wish Date: Mon, 3 Jul 2023 20:33:03 +1000 Subject: [PATCH] fix events_quests id missing PK flag --- patch-schema/event_quests.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch-schema/event_quests.sql b/patch-schema/event_quests.sql index 85e7bccfe..8350d0a70 100644 --- a/patch-schema/event_quests.sql +++ b/patch-schema/event_quests.sql @@ -2,7 +2,7 @@ BEGIN; create table if not exists event_quests ( - id serial, + id serial primary key, max_players integer, quest_type integer, quest_id uint16 not null