diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-10-17 15:43:26 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-10-17 15:43:26 +0200 |
commit | 546dcc127754054347b08d74c945665cfe3c3f97 (patch) | |
tree | e7f6bc747ef3bee1ed44e7119aefef3eef2abb34 /schema.sql | |
parent | 8ac21f98f7bcaaf3240e58cd2964c4aa0f69e303 (diff) | |
download | server-546dcc127754054347b08d74c945665cfe3c3f97.tar.gz |
Fix tournament timeout bans.
Diffstat (limited to 'schema.sql')
-rw-r--r-- | schema.sql | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |