close #272 Enhancement: Newest Expenses - Payments: Recent payments not showing on the top

This commit is contained in:
cuneytsenturk
2018-07-07 18:23:31 +03:00
parent 672159eafc
commit bf30fad8af
9 changed files with 253 additions and 6 deletions

View File

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