Files
hr/database/migrations/2026_07_30_112812_create_gifts_table.php
2026-07-30 17:24:40 +05:00

32 lines
827 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('gifts', function (Blueprint $table): void {
$table->id();
$table->foreignId('employee_id')->constrained()->cascadeOnDelete();
$table->date('gift_date');
$table->string('gift_name');
$table->decimal('value', 10, 2)->default(0);
$table->text('reason')->nullable();
$table->timestamps();
$table->softDeletes();
$table->index(['employee_id', 'gift_date']);
});
}
public function down(): void
{
Schema::dropIfExists('gifts');
}
};