32 lines
827 B
PHP
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');
|
|
}
|
|
};
|