mirror of
https://github.com/v2board/v2board.git
synced 2024-11-11 01:59:12 +08:00
13 lines
204 B
PHP
Executable File
13 lines
204 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Server extends Model
|
|
{
|
|
protected $table = 'v2_server';
|
|
protected $dateFormat = 'U';
|
|
protected $guarded = ['id'];
|
|
}
|