mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
15 lines
386 B
PHP
15 lines
386 B
PHP
<?php
|
|
//streamer config
|
|
require_once '../videos/configuration.php';
|
|
require_once $global['systemRootPath'] . 'objects/playlist.php';
|
|
|
|
if (!isCommandLineInterface()) {
|
|
return die('Command Line only');
|
|
}
|
|
|
|
echo "Start delete statistics" . PHP_EOL;
|
|
|
|
$sql = "delete FROM videos_statistics where id > 0";
|
|
sqlDAL::writeSql($sql);
|
|
|
|
echo "Finish delete statistics" . PHP_EOL;
|