39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?php
|
|
|
|
use App\Enums\IsPaid;
|
|
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('payrolls', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
|
|
$table->string('period_month', 7);
|
|
$table->unsignedInteger('base_salary');
|
|
$table->unsignedInteger('bonus');
|
|
$table->unsignedInteger('deduction');
|
|
$table->unsignedInteger('total_salary');
|
|
$table->enum('is_paid', IsPaid::values())->default(IsPaid::NOT_PAID->value)->comment(IsPaid::comment());
|
|
$table->dateTime('paid_at')->nullable();
|
|
$table->timestamp('created_at')->useCurrent();
|
|
$table->timestamp('updated_at')->useCurrent()->useCurrentOnUpdate();
|
|
$table->softDeletes();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('payrolls');
|
|
}
|
|
};
|