fix db delete data issue
Tests / PHPUnit (push) Failing after 1m24s

This commit is contained in:
root
2026-07-13 01:43:32 -04:00
parent f3ac521d7c
commit 504c3bc9f9
12 changed files with 76 additions and 154 deletions
-22
View File
@@ -1,22 +0,0 @@
<?php
namespace App\Models;
use CodeIgniter\Model;
class StatsModel extends Model
{
protected $table = 'stats';
protected $primaryKey = 'id';
protected $allowedFields = [
'students',
'teachers',
'admins',
'users'
];
public function getStats()
{
return $this->findAll();
}
}