fix tests issues
Tests / PHPUnit (push) Failing after 1m16s

This commit is contained in:
root
2026-07-13 00:24:00 -04:00
parent 439a695727
commit a56aca4342
17 changed files with 349 additions and 40 deletions
@@ -3,6 +3,7 @@
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
use CodeIgniter\Database\RawSql;
class CreateTeacherSubmissionNotificationHistory extends Migration
{
@@ -56,7 +57,7 @@ class CreateTeacherSubmissionNotificationHistory extends Migration
'sent_at' => [
'type' => 'DATETIME',
'null' => false,
'default' => 'CURRENT_TIMESTAMP',
'default' => new RawSql('CURRENT_TIMESTAMP'),
],
]);