summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-10-07 13:34:54 +0200
committerTor Andersson <tor@ccxvii.net>2023-10-07 13:35:04 +0200
commit6d5a4328e52a67df35545647e550223a7bf8d9a4 (patch)
tree422ce19223d3abf5f190ac8799d4e229ef805ca1 /schema.sql
parenta445b2a0519c2570984713986e3cb28398ee88e7 (diff)
downloadserver-6d5a4328e52a67df35545647e550223a7bf8d9a4.tar.gz
Fix sending out ready to start reminders.
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 4c64ecd..536a831 100644
--- a/schema.sql
+++ b/schema.sql
@@ -468,7 +468,7 @@ create view ready_to_start_reminder as
and not exists (
select 1 from players
where
- players.game_id = players.game_id
+ players.game_id = games.game_id
and is_invite
)
;