update memo, lpj, resume, dan perbaikan form inspeksi

This commit is contained in:
majid
2024-12-18 16:58:32 +07:00
parent eaffe2805f
commit 27e53431d0
22 changed files with 1556 additions and 310 deletions

View File

@@ -0,0 +1,44 @@
<?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('inspeksi', function (Blueprint $table) {
if (Schema::hasColumn('inspeksi', 'jenis_jaminan_id')) {
$table->dropForeign(['jenis_jaminan_id']);
}
if (Schema::hasColumn('inspeksi', 'jenis_jaminan_id')) {
$table->dropColumn('jenis_jaminan_id');
}
$table->unsignedBigInteger('dokument_id')->nullable()->after('permohonan_id');
$table->foreign('dokument_id')->references('id')->on('dokumen_jaminan')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('inspeksi', function (Blueprint $table) {
$table->dropForeign(['dokument_id']);
$table->dropColumn('dokument_id');
$table->unsignedBigInteger('jenis_jaminan_id')->nullable()->after('permohonan_id');
$table->foreign('jenis_jaminan_id')->references('id')->on('jenis_jaminan')->onDelete('cascade');
});
}
};