id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete()->unique(); $table->date('join_date'); $table->date('resign_date')->nullable(); $table->enum('employment_status', EmploymentStatus::values())->default(EmploymentStatus::FULL_TIME->value); $table->unsignedInteger('base_salary'); $table->timestamp('created_at')->useCurrent(); $table->timestamp('updated_at')->useCurrent()->useCurrentOnUpdate(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('employees'); } };