schneespur/release/schneespur-1.0.2/app/Models/JobAudit.php
Michael 7288b93500 Release v1.0.2: diagnostic infrastructure core
Add neutral diagnostic framework for future reporting modules:
- DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer
- Laravel exception hook in bootstrap/app.php
- Module permission declarations (requires_permissions in module.json)
- Core diagnostic report points (module boot/install/update failures)
- Module documentation update (moduldoku.md)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-18 16:54:11 +00:00

53 lines
1.1 KiB
PHP

<?php
namespace App\Models;
use Database\Factories\JobAuditFactory;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class JobAudit extends Model
{
/** @use HasFactory<JobAuditFactory> */
use HasFactory;
const UPDATED_AT = null;
protected $fillable = [
'job_id',
'user_id',
'action',
'old_values',
'new_values',
'ip_address',
];
protected function casts(): array
{
return [
'old_values' => 'array',
'new_values' => 'array',
'created_at' => 'datetime',
];
}
public function save(array $options = []): bool
{
if ($this->exists) {
throw new \LogicException('JobAudit records are insert-only and cannot be updated.');
}
return parent::save($options);
}
public function job(): BelongsTo
{
return $this->belongsTo(Job::class);
}
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
}