sekolah_adiwiyata/database/migrations/2025_03_12_113148_add_colum...

31 lines
686 B
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('profile', function (Blueprint $table) {
$table->integer('ms_kecamatan_id');
$table->foreign('ms_kecamatan_id')->references('MsKecamatanId')->on('ms_kecamatan')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('profile', function (Blueprint $table) {
//
});
}
};