summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-10-17 15:43:26 +0200
committerTor Andersson <tor@ccxvii.net>2024-10-17 15:43:26 +0200
commit546dcc127754054347b08d74c945665cfe3c3f97 (patch)
treee7f6bc747ef3bee1ed44e7119aefef3eef2abb34 /schema.sql
parent8ac21f98f7bcaaf3240e58cd2964c4aa0f69e303 (diff)
downloadserver-546dcc127754054347b08d74c945665cfe3c3f97.tar.gz
Fix tournament timeout bans.
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index ee52bee..0ee91e2 100644
--- a/schema.sql
+++ b/schema.sql
@@ -502,7 +502,8 @@ create view time_control_view as
game_id,
user_id,
role,
- is_opposed
+ is_opposed,
+ is_match
from
games
join players using(game_id)