mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-27 23:34:27 -08:00
5 lines
337 B
Bash
5 lines
337 B
Bash
#!/bin/bash
|
|
#SCHEDULE WITH CRONTAB AND ADJUST THE INTERVALS FOR THE NUMBER OF DAYS OF LOGS TO KEEP IN THE DATABASE
|
|
SQLCONFFILE="./mysql.cnf" #set this to the path that contains the mysql.cnf file
|
|
mysql --defaults-file=$SQLCONFFILE -h localhost -e 'delete from servatrice.cockatrice_log where log_time < DATE_SUB(now(), INTERVAL 10 DAY)'
|