2022-12-30 19:03:37 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Core\Db;
|
|
|
|
|
|
|
|
|
|
require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'autoload.php';
|
|
|
|
|
|
|
|
|
|
/**
|
2023-01-10 16:29:32 +00:00
|
|
|
|
* Чистка и сброс счетчиков при отсутствии боев чтоб не ламался лог.
|
|
|
|
|
* Запуск каждые три часа в Х часов 20 минут?
|
2022-12-30 19:03:37 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
Db::sql('delete from battle_end where time < unix_timestamp() - 24 * 60 * 60');
|
|
|
|
|
Db::sql('delete from battle_last where time < unix_timestamp() - 24 * 60 * 60');
|
|
|
|
|
Db::sql('delete from battle_out where time < unix_timestamp() - 24 * 60 * 60');
|
|
|
|
|
Db::sql('delete from battle_stat where time < unix_timestamp() - 24 * 60 * 60');
|
|
|
|
|
Db::sql('delete from battle_logs where time < unix_timestamp() - 24 * 60 * 60');
|
|
|
|
|
Db::sql('delete from battle_logs_save where time < unix_timestamp() - 24 * 60 * 60');
|
|
|
|
|
Db::sql('delete from battle_users where time_enter between 1 and unix_timestamp() - 24 * 60 * 60');
|
|
|
|
|
Db::sql('delete from battle where time_over between 1 and unix_timestamp() - 24 * 60 * 60');
|