]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blob - scripts/purge_anticheat_log.sql
Add table definitions.
[xonotic/xonstatdb.git] / scripts / purge_anticheat_log.sql
1 begin;
2     -- get rid of stuff that is older than 30 days old
3     delete from player_game_anticheats
4     where create_dt < now() at time zone 'utc' - interval '30 days';
5 end;