removed module category from json
This commit is contained in:
@@ -33,7 +33,6 @@ class CreateModuleUpdatedHistory
|
||||
ModuleHistory::create([
|
||||
'company_id' => $model->company_id,
|
||||
'module_id' => $model->id,
|
||||
'category' => $module->get('category', 'payment-method'),
|
||||
'version' => $event->new,
|
||||
'description' => trans('modules.history.updated', ['module' => $module->getAlias()]),
|
||||
]);
|
||||
|
||||
29
app/Listeners/Update/V20/Version2017.php
Normal file
29
app/Listeners/Update/V20/Version2017.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace App\Listeners\Update\V20;
|
||||
|
||||
use App\Abstracts\Listeners\Update as Listener;
|
||||
use App\Events\Install\UpdateFinished as Event;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
class Version2017 extends Listener
|
||||
{
|
||||
const ALIAS = 'core';
|
||||
|
||||
const VERSION = '2.0.17';
|
||||
|
||||
/**
|
||||
* Handle the event.
|
||||
*
|
||||
* @param $event
|
||||
* @return void
|
||||
*/
|
||||
public function handle(Event $event)
|
||||
{
|
||||
if ($this->skipThisUpdate($event)) {
|
||||
return;
|
||||
}
|
||||
|
||||
Artisan::call('migrate', ['--force' => true]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user