mirror of https://github.com/kcal-app/kcal.git
Add dev console command to reset database
This commit is contained in:
parent
a378936b72
commit
adc63d975c
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
use Illuminate\Foundation\Inspiring;
|
use Illuminate\Foundation\Console\ClosureCommand;
|
||||||
use Illuminate\Support\Facades\Artisan;
|
use Illuminate\Support\Facades\Artisan;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -14,6 +14,19 @@ use Illuminate\Support\Facades\Artisan;
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Artisan::command('inspire', function () {
|
if (!App::isProduction()) {
|
||||||
$this->comment(Inspiring::quote());
|
/**
|
||||||
})->purpose('Display an inspiring quote');
|
* Wipe, migrate, and seed the database.
|
||||||
|
*/
|
||||||
|
Artisan::command('dev:reset', function () {
|
||||||
|
/** @phpstan-ignore-next-line */
|
||||||
|
assert($this instanceof ClosureCommand);
|
||||||
|
Artisan::call('db:wipe');
|
||||||
|
$this->info(Artisan::output());
|
||||||
|
Artisan::call('migrate');
|
||||||
|
$this->info(Artisan::output());
|
||||||
|
Artisan::call('db:seed');
|
||||||
|
$this->info(Artisan::output());
|
||||||
|
$this->info('Database reset complete!');
|
||||||
|
})->purpose('Wipe, migrate, and seed the database.');
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue