31 lines
540 B
PHP
31 lines
540 B
PHP
<?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'
|
|
];
|
|
}
|