v2board/app/Models/ServerLog.php
2019-12-17 17:37:15 +08:00

14 lines
221 B
PHP

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