hasil akhir done

This commit is contained in:
annajwasz 2025-03-17 20:41:10 +07:00
parent 2795c1deac
commit f0df7e3f2d
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('parameters', function (Blueprint $table) {
$table->enum('hasil', ['Layak', 'Dipertimbangkan', 'Tidak Layak'])->nullable()->after('total_nilai');
});
}
public function down(): void
{
Schema::table('parameters', function (Blueprint $table) {
$table->dropColumn('hasil');
});
}
};