summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-11-24 12:34:04 +0100
committerTor Andersson <tor@ccxvii.net>2024-11-24 13:06:18 +0100
commita9481cf40c87ef830833177bd1a368aa9b249e74 (patch)
tree305d9b484df77de15af7c09aa06655283ccac88c /schema.sql
parent3f2c801b616f4c23c28c03d938bbadefefb49eb0 (diff)
downloadserver-a9481cf40c87ef830833177bd1a368aa9b249e74.tar.gz
Add log entry for all timed out tournament games.
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/schema.sql b/schema.sql
index 4ae8bb5..d321295 100644
--- a/schema.sql
+++ b/schema.sql
@@ -590,6 +590,12 @@ create table if not exists tm_banned (
time datetime default current_timestamp
);
+create table if not exists tm_timeout (
+ user_id integer,
+ game_id integer,
+ time datetime default current_timestamp
+);
+
create table if not exists tm_queue (
user_id integer,
seed_id integer,