1
0
mirror of https://github.com/v2board/v2board.git synced 2025-04-13 13:12:37 +08:00
v2board/app/Models/StatServer.php
2020-12-20 16:57:33 +08:00

13 lines
213 B
PHP

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