1
0
mirror of https://github.com/v2board/v2board.git synced 2025-04-07 02:02:35 +08:00
Tokumeikoi f7959dcd93 update
2020-05-11 17:19:58 +08:00

15 lines
256 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 $dispatchesEvents = [
];
}