Merge branch 'staging' into feature/senior-officer
This commit is contained in:
@@ -12,6 +12,7 @@ return new class extends Migration
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('jenis_jaminan', function (Blueprint $table) {
|
||||
$table->string('slug')->after('name');
|
||||
$table->string('jenis_legalitas_jaminan_id')->nullable()->after('slug');
|
||||
});
|
||||
}
|
||||
@@ -22,6 +23,7 @@ return new class extends Migration
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('jenis_jaminan', function (Blueprint $table) {
|
||||
$table->dropColumn('slug');
|
||||
$table->dropColumn('jenis_legalitas_jaminan_id');
|
||||
});
|
||||
}
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Modules\Lpj\Models\JenisFasilitasKredit;
|
||||
use Modules\Lpj\Models\NilaiPlafond;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('permohonan', function (Blueprint $table) {
|
||||
$table->foreignIdFor(JenisFasilitasKredit::class)->nullable()->onDelete('cascade');
|
||||
$table->foreignIdFor(NilaiPlafond::class)->nullable()->onDelete('cascade');
|
||||
$table->string('status')->default('order')->change();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('permohonan', function (Blueprint $table) {
|
||||
$table->dropForeign(['fasilitas_kredit_id']);
|
||||
$table->dropForeign(['nilai_plafond_id']);
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user