PATH:
home
/
rwabteecom
/
public_html
/
database
/
migrations
/
Editing: 2023_01_03_092209_affiliate_code_for_existing_user.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Support\Facades\Artisan; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Artisan::call('db:seed', ['--class' => 'AffiliateCodeForExistingUserSeeder', '--force' => true]); } /** * Reverse the migrations. */ public function down(): void { } };
SAVE
CANCEL