add tests batch 20

This commit is contained in:
root
2026-06-09 01:03:53 -04:00
parent 95efb9652e
commit 6be4875c5e
1502 changed files with 13797 additions and 11313 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');
}
}
}