<?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('applicants', function (Blueprint $table) {
            $table->date('birth_date')->nullable()->after('education');
            $table->enum('gender', ['Laki-laki', 'Perempuan'])->nullable()->after('birth_date');
            $table->string('province')->nullable()->after('gender');
            $table->string('city')->nullable()->after('province');
        });
    }

    public function down(): void
    {
        Schema::table('applicants', function (Blueprint $table) {
            $table->dropColumn(['birth_date', 'gender', 'province', 'city']);
        });
    }
};
