32 lines
847 B
PHP
32 lines
847 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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('explanations', function (Blueprint $table): void {
|
|
$table->id();
|
|
$table->foreignId('employee_id')->constrained()->cascadeOnDelete();
|
|
$table->date('explanation_date');
|
|
$table->string('reason');
|
|
$table->text('description');
|
|
$table->string('attachment_path')->nullable();
|
|
$table->timestamps();
|
|
$table->softDeletes();
|
|
|
|
$table->index(['employee_id', 'explanation_date']);
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('explanations');
|
|
}
|
|
};
|