hasil akhir done
This commit is contained in:
parent
2795c1deac
commit
f0df7e3f2d
|
@ -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');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
Loading…
Reference in New Issue