mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-26 04:40:50 -08:00
4 lines
204 B
Bash
4 lines
204 B
Bash
#!/bin/bash
|
|
# SCHEDULE WITH CRONTAB TO RUN ONCE A MONTH
|
|
mysql --defaults-file=./mysql.cnf -h localhost -e "delete from servatrice.cockatrice_sessions where start_time < DATE_SUB(now(), INTERVAL 1 MONTH)"
|