penambahanan otorisari paparan

This commit is contained in:
majid
2025-01-17 10:51:09 +07:00
parent e6adcd8185
commit 0b56403436
16 changed files with 911 additions and 470 deletions

View File

@@ -0,0 +1,28 @@
<?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('permohonan', function (Blueprint $table) {
$table->string('tanggal_paparan')->nullable()->after('nilai_plafond_id');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('permohonan', function (Blueprint $table) {
$table->dropColumn('tanggal_paparan');
});
}
};