1
0
mirror of https://github.com/v2board/v2board.git synced 2025-03-13 22:24:46 +08:00
v2board/app/Models/StatServer.php

13 lines
213 B
PHP
Raw Normal View History

2020-12-20 16:57:33 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class StatServer extends Model
{
protected $table = 'v2_stat_server';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}