update: statistics

This commit is contained in:
tokumeikoi
2020-12-20 16:57:33 +08:00
parent 1d70382aee
commit 7e5e696c70
6 changed files with 200 additions and 39 deletions

12
app/Models/StatServer.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class StatServer extends Model
{
protected $table = 'v2_stat_server';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}