whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
database
/
migrations
/
Upload File:
files >> /home/kckglobal/public_html/portal/database/migrations/2024_12_20_105535_fix_client_entries.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; use App\Models\EmployeeDetails; return new class extends Migration { /** * Run the migrations. */ public function up(): void { // delete all client entries from employee_details table EmployeeDetails::withoutGlobalScopes()->join('client_details', 'employee_details.user_id', '=', 'client_details.user_id')->delete(); } /** * Reverse the migrations. */ public function down(): void { // } };
Copyright ©2021 || Defacer Indonesia