summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 536a831..85e5ba4 100644
--- a/schema.sql
+++ b/schema.sql
@@ -451,7 +451,7 @@ create view game_view as
from
games
join titles using(title_id)
- join users as owner
+ left join users as owner
on owner.user_id = games.owner_id
;