diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-01-01 17:37:35 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-01-01 17:39:15 +0100 |
commit | 6d541440787ff4ce37f4c779311bb48e90d8420c (patch) | |
tree | 488d5647c1102de79efb027d8808fd15b4da149a /schema.sql | |
parent | f63ca4b1dae6de2cb3965a9e7d984ff2cb9d14e7 (diff) | |
download | server-6d541440787ff4ce37f4c779311bb48e90d8420c.tar.gz |
Don't count games that end early (resigned/timed out) in stats.
Diffstat (limited to 'schema.sql')
-rw-r--r-- | schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -169,7 +169,7 @@ create view rated_games_view as games where status > 1 - and moves > 5 + and moves > 6 and user_count = player_count and player_count > 1 and not exists ( |