mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 09:39:10 +08:00
16 lines
287 B
PHP
Executable File
16 lines
287 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ServerGroup extends Model
|
|
{
|
|
protected $table = 'v2_server_group';
|
|
protected $dateFormat = 'U';
|
|
protected $casts = [
|
|
'created_at' => 'timestamp',
|
|
'updated_at' => 'timestamp'
|
|
];
|
|
}
|