1
0
mirror of https://github.com/v2board/v2board.git synced 2025-02-19 11:50:28 +08:00

13 lines
204 B
PHP
Raw Normal View History

2019-10-29 15:33:36 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Server extends Model
{
protected $table = 'v2_server';
protected $dateFormat = 'U';
2019-11-18 18:23:39 +08:00
protected $guarded = ['id'];
2019-10-29 15:33:36 +08:00
}