summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-12-22 00:23:43 +0100
committerTor Andersson <tor@ccxvii.net>2023-12-23 02:10:40 +0100
commit6aa382f07a75872db327f5f1ed1c012da0d3d5e3 (patch)
tree16a63bf27685fbdd9957e3bd28028966b5836899 /schema.sql
parent924101c4c0ed18f5bae2ee83de368a4f1f0bee51 (diff)
downloadserver-6aa382f07a75872db327f5f1ed1c012da0d3d5e3.tar.gz
Send system chat messages when players join and part active games.
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 49da960..f780af4 100644
--- a/schema.sql
+++ b/schema.sql
@@ -405,7 +405,7 @@ create view game_chat_view as
game_id, chat_id, time, name, message
from
game_chat
- join users using(user_id)
+ left join users using(user_id)
;
create table if not exists game_replay (