mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 02:58:14 -05:00
17 lines
318 B
PHP
17 lines
318 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Support\Facades\DB;
|
||
|
|
||
|
class ServerLog extends Model
|
||
|
{
|
||
|
protected $table = 'v2_server_log';
|
||
|
protected $dateFormat = 'U';
|
||
|
protected $casts = [
|
||
|
'created_at' => 'timestamp',
|
||
|
'updated_at' => 'timestamp'
|
||
|
];
|
||
|
}
|