2016-07-21 14:35:23 +02:00
|
|
|
<?php namespace App\Console\Commands;
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-05-30 18:30:57 +02:00
|
|
|
use Utils;
|
2015-03-16 22:45:25 +01:00
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* Class ResetData
|
|
|
|
*/
|
|
|
|
class ResetData extends Command
|
|
|
|
{
|
2016-07-21 14:35:23 +02:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $name = 'ninja:reset-data';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = 'Reset data';
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
public function fire()
|
|
|
|
{
|
|
|
|
$this->info(date('Y-m-d') . ' Running ResetData...');
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
if (!Utils::isNinjaDev()) {
|
|
|
|
return;
|
|
|
|
}
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
Artisan::call('migrate:reset');
|
|
|
|
Artisan::call('migrate');
|
|
|
|
Artisan::call('db:seed');
|
|
|
|
}
|
2017-01-30 17:05:31 +01:00
|
|
|
}
|