1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Console/Commands/ResetData.php

35 lines
585 B
PHP
Raw Normal View History

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