dress/database/migrations/2026_04_18_132845_create_payrolls_table.php

38 lines
1.1 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('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->boolean('is_paid')->default(false);
$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');
}
};