Added update listener file..

This commit is contained in:
Cüneyt Şentürk 2023-07-06 11:50:44 +03:00
parent d23b41a88b
commit 45181fa019
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,43 @@
<?php
namespace App\Listeners\Update\V30;
use App\Abstracts\Listeners\Update as Listener;
use App\Events\Install\UpdateFinished as Event;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Log;
class Version3016 extends Listener
{
const ALIAS = 'core';
const VERSION = '3.0.16';
/**
* Handle the event.
*
* @param $event
* @return void
*/
public function handle(Event $event)
{
if ($this->skipThisUpdate($event)) {
return;
}
Log::channel('stdout')->info('Updating to 3.0.16 version...');
$this->updateDatabase();
Log::channel('stdout')->info('Done!');
}
public function updateDatabase(): void
{
Log::channel('stdout')->info('Updating database...');
Artisan::call('migrate', ['--force' => true]);
Log::channel('stdout')->info('Database updated.');
}
}

View File

@ -24,6 +24,7 @@ class Event extends Provider
'App\Listeners\Update\V30\Version3013',
'App\Listeners\Update\V30\Version3014',
'App\Listeners\Update\V30\Version3015',
'App\Listeners\Update\V30\Version3016',
],
'Illuminate\Auth\Events\Login' => [
'App\Listeners\Auth\Login',