v2board/app/Models/ServerStat.php
2020-06-05 00:25:15 +08:00

13 lines
213 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ServerStat extends Model
{
protected $table = 'v2_server_stat';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}