update approval di list approval

This commit is contained in:
2025-09-12 11:28:15 +07:00
parent c65a95ce09
commit acfc8d1288
8 changed files with 174 additions and 62 deletions

View File

@@ -15,6 +15,8 @@ return new class extends Migration
{
Schema::table('request_logs', function (Blueprint $table) {
$table->integer('nominal')->default(0)->after('total_cob');
$table->string('status_approval')->nullable()->after('status_final_log');
$table->integer('approval_nominal_by')->nullable()->after('status_approval');
});
}
@@ -27,6 +29,8 @@ return new class extends Migration
{
Schema::table('table_request_log', function (Blueprint $table) {
$table->dropColumn('nominal');
$table->dropColumn('status_approval');
$table->dropColumn('approval_nominal_by');
});
}
};