65 lines
2.7 KiB
PHP
65 lines
2.7 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('employees', function (Blueprint $table) {
|
|
$table->id();
|
|
|
|
// Basic Information
|
|
$table->string('employee_id')->unique();
|
|
$table->string('phone')->nullable();
|
|
$table->date('date_of_birth')->nullable();
|
|
$table->enum('gender', ['male', 'female', 'other'])->nullable();
|
|
|
|
// Employment Details
|
|
$table->foreignId('branch_id')->nullable()->constrained('branches')->onDelete('set null');
|
|
$table->foreignId('department_id')->nullable()->constrained('departments')->onDelete('set null');
|
|
$table->foreignId('designation_id')->nullable()->constrained('designations')->onDelete('set null');
|
|
$table->foreignId('shift_id')->nullable()->constrained('shifts')->onDelete('set null');
|
|
$table->foreignId('attendance_policy_id')->nullable()->constrained('attendance_policies')->onDelete('set null');
|
|
$table->date('date_of_joining')->nullable();
|
|
$table->string('employment_type')->nullable(); // Full-time, Part-time, Contract, etc.
|
|
|
|
// Contact Information
|
|
$table->string('address_line_1')->nullable();
|
|
$table->string('address_line_2')->nullable();
|
|
$table->string('city')->nullable();
|
|
$table->string('state')->nullable();
|
|
$table->string('country')->nullable();
|
|
$table->string('postal_code')->nullable();
|
|
$table->string('emergency_contact_name')->nullable();
|
|
$table->string('emergency_contact_relationship')->nullable();
|
|
$table->string('emergency_contact_number')->nullable();
|
|
|
|
// Banking Information
|
|
$table->string('bank_name')->nullable();
|
|
$table->string('account_holder_name')->nullable();
|
|
$table->string('account_number')->nullable();
|
|
$table->string('bank_identifier_code')->nullable(); // BIC/SWIFT
|
|
$table->string('bank_branch')->nullable();
|
|
$table->string('tax_payer_id')->nullable();
|
|
|
|
// System fields
|
|
$table->foreignId('user_id')->constrained('users')->onDelete('cascade');
|
|
$table->foreignId('created_by')->constrained('users')->onDelete('cascade');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('employees');
|
|
}
|
|
}; |