| DIR: /home/cardxfeb/www/database/migrations/ |
| Current File : //home/cardxfeb/www/database/migrations/2022_10_04_044346_run_default_seeder_3.php |
<?php
use Illuminate\Database\Migrations\Migration;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Artisan::call('db:seed', ['--class' => 'ExtraScriptFrontSeeder', '--force' => true]);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};
|