35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::create('cuti', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignId('user_id')->constrained('users')->onDelete('cascade');
|
|
$table->string('jenis_cuti');
|
|
$table->text('keterangan');
|
|
$table->date('tanggal_mulai');
|
|
$table->date('tanggal_selesai');
|
|
$table->enum('status', ['Pending', 'Disetujui', 'Ditolak'])->default('Pending');
|
|
// $table->string('file_path')->nullable();
|
|
$table->timestamps();
|
|
$table->softDeletes(); // Untuk fitur soft delete jika diperlukan
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('cuti');
|
|
}
|
|
};
|