Update histori file MCU

This commit is contained in:
ivan
2023-07-20 16:52:08 +07:00
parent 4c8570b542
commit 59c56ae90f
5 changed files with 41 additions and 14 deletions

View File

@@ -8,7 +8,7 @@ use Illuminate\Database\Eloquent\Model;
class FilesMcu extends Model
{
use HasFactory;
protected $table = 'filesmcu';
protected $table = 'files_mcu';
protected $primaryKey = 'id';
protected $fillable = ['member_id', 'path', 'created_by', 'created_at'];
protected $fillable = ['memberid', 'original_name', 'path', 'created_by','updated_by', 'created_at', 'updated_at'];
}