Cockatrice/servatrice/scripts/maint_sessions
woogerboy21 2b55170110 DB Maint Scripts
External shell script to help maintain the cockatrice database tables.
2014-07-01 13:11:52 -04:00

7 lines
324 B
Bash

#!/bin/bash
#REPLACE THE --date="1 month ago" WITH THE TIME FRAME TO CLEAR UP
#EX: --date="1 day ago" (FOR SINGLE DAY)
#--CAN BE SCHEDULED WITH CRONTAB
DATE=$(date +%Y-%m --date="1 month ago")
mysql --defaults-file=./mysql.cnf -h localhost -e "delete from servatrice.cockatrice_sessions where start_time like \"${DATE}%\""