28 lines
770 B
PHP
28 lines
770 B
PHP
<?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::create('jabatan', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('nama');
|
|
$table->enum('peringkat', ['Jabatan', 'Bahagian', 'Seksyen', 'Unit', 'Sub Unit']);
|
|
$table->string('kod')->nullable()->unique();
|
|
$table->text('penerangan')->nullable();
|
|
$table->boolean('status')->default(true);
|
|
$table->softDeletes();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('jabatan');
|
|
}
|
|
};
|