remove codeigniter

This commit is contained in:
root
2026-06-04 02:41:08 -04:00
parent 4e33882ac7
commit b4e6ac03c5
180 changed files with 457 additions and 2186 deletions
+3 -3
View File
@@ -10,8 +10,8 @@ class AttendanceDay extends BaseModel
{
protected $table = 'attendance_day';
// ✅ You are storing created_at / updated_at manually in CI (timestamps off there)
// User didn't explicitly ask to auto-manage here, so we keep it OFF to match CI.
// ✅ You are storing created_at / updated_at manually in legacy (timestamps off there)
// User didn't explicitly ask to auto-manage here, so we keep it OFF to match legacy.
// If you want auto-manage, tell me and Ill flip it.
public $timestamps = false;
@@ -56,7 +56,7 @@ class AttendanceDay extends BaseModel
];
/* =========================
* CI method equivalents
* legacy method equivalents
* ========================= */
/**