removed enabled column from reports

This commit is contained in:
denisdulici
2019-11-19 14:06:20 +03:00
parent 3e5b5b183d
commit dbb57eb86b
13 changed files with 66 additions and 80 deletions

View File

@@ -0,0 +1,31 @@
<?php
namespace App\Listeners\Update\V13;
use App\Events\Install\UpdateFinished as Event;
use App\Listeners\Update\Listener;
use Artisan;
class Version201 extends Listener
{
const ALIAS = 'core';
const VERSION = '2.0.1';
/**
* Handle the event.
*
* @param $event
* @return void
*/
public function handle(Event $event)
{
// Check if should listen
if (!$this->check($event)) {
return;
}
// Update database
Artisan::call('migrate', ['--force' => true]);
}
}