whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
database
/
migrations
/
Upload File:
files >> /home/kckglobal/public_html/portal/database/migrations/2025_02_03_071444_alter_estimate_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::table('estimates', function (Blueprint $table) { $table->unsignedInteger('project_id')->nullable()->index('estimates_project_id_foreign'); $table->foreign(['project_id'])->references(['id'])->on('projects')->onUpdate('CASCADE')->onDelete('CASCADE'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('estimates', function (Blueprint $table) { $table->dropColumn('project_id'); }); } };
Copyright ©2021 || Defacer Indonesia