İlk temizlik tamamlandı bir önceki projeden
This commit is contained in:
@@ -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'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user