1
0
mirror of https://github.com/v2board/v2board.git synced 2025-03-13 06:04:42 +08:00
2019-11-05 00:12:04 +08:00

15 lines
256 B
PHP

<?php
namespace App\Models;
use App\Events\ServerLogSaveEvent;
use Illuminate\Database\Eloquent\Model;
class ServerLog extends Model
{
protected $table = 'v2_server_log';
protected $dateFormat = 'U';
protected $dispatchesEvents = [
];
}