This commit is contained in:
root
2019-12-17 17:37:15 +08:00
parent e10041edb7
commit 34bb04d755
4 changed files with 0 additions and 72 deletions

View File

@ -2,7 +2,6 @@
namespace App\Models;
use App\Events\ServerCreatedEvent;
use Illuminate\Database\Eloquent\Model;
class ServerLog extends Model
@ -10,6 +9,5 @@ class ServerLog extends Model
protected $table = 'v2_server_log';
protected $dateFormat = 'U';
protected $dispatchesEvents = [
'created' => ServerCreatedEvent::class
];
}