İlk temizlik tamamlandı bir önceki projeden

This commit is contained in:
Ümit Tunç
2026-04-28 21:14:25 +03:00
commit f80443aec0
10000 changed files with 959965 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class DocumentHistory extends Model
{
protected $table = 'document_history';
protected $fillable = [
'table_name',
'column_name',
'row_id',
'user_name',
'action',
'file_name',
'file_size',
'moved_from',
'moved_to',
'action_date',
'file_path',
'notes'
];
protected $dates = [
'action_date',
'created_at',
'updated_at'
];
}