fix gitlab tests

This commit is contained in:
root
2026-06-09 02:32:58 -04:00
parent 20a0b6c4e5
commit 6def9993da
1489 changed files with 10449 additions and 11356 deletions
+4 -2
View File
@@ -2,6 +2,8 @@
namespace App\Models;
use App\Models\BaseModel;
class ClassPreparationLog extends BaseModel
{
protected $table = 'class_preparation_log';
@@ -20,7 +22,7 @@ class ClassPreparationLog extends BaseModel
protected $casts = [
'class_section_id' => 'integer',
// If prep_data is JSON in DB, use 'array' (or 'json') cast:
'prep_data' => 'array',
'prep_data' => 'array',
];
// Optional relationship
@@ -28,4 +30,4 @@ class ClassPreparationLog extends BaseModel
{
return $this->belongsTo(ClassSection::class, 'class_section_id');
}
}
}