enum('type_penilai', ['memo', 'resume', 'standard', 'sederhana', 'rap']) ->nullable() ->comment('Jenis penilai: memo, resume, standard, sederhana, rap'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('penilai', function (Blueprint $table) { $table->dropColumn('type_penilai'); }); } };