mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-25 12:24:26 -08:00
7 lines
447 B
Bash
7 lines
447 B
Bash
#!/bin/bash
|
|
|
|
# SCHEDULE WITH CRONTAB DAILY
|
|
DBNAME="servatrice" #set this to the database name used
|
|
TABLEPREFIX="cockatrice" #set this to the prefix used for the table names in the database (do not inclue the _)
|
|
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_games where time_finished < DATE_SUB(now(), INTERVAL 8 DAY)' |