handle more logs

This commit is contained in:
Robin Appelman 2020-06-18 00:45:42 +02:00
commit 7386dddfe4
6 changed files with 135 additions and 51 deletions

View file

@ -1,8 +1,8 @@
CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public;
CREATE TYPE team AS ENUM ('blue', 'red');
CREATE TYPE team AS ENUM ('blue', 'red', 'other');
CREATE TYPE class_type AS ENUM ('scout', 'soldier', 'pyro', 'demoman', 'heavyweapons', 'engineer', 'medic', 'sniper', 'spy');
CREATE TYPE class_type AS ENUM ('scout', 'soldier', 'pyro', 'demoman', 'heavyweapons', 'engineer', 'medic', 'sniper', 'spy', 'unknown');
CREATE TYPE game_mode AS ENUM ('ultiduo', '4v4', '6v6', '7v7', '9v9', 'other');