summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
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 (