fix unittests issues
API CI/CD / Validate (composer + pint) (push) Successful in 3m6s
API CI/CD / Test (PHPUnit) (push) Failing after 4m53s
API CI/CD / Build frontend assets (push) Successful in 1m2s
API CI/CD / Security audit (push) Failing after 59s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped
API CI/CD / Validate (composer + pint) (push) Successful in 3m6s
API CI/CD / Test (PHPUnit) (push) Failing after 4m53s
API CI/CD / Build frontend assets (push) Successful in 1m2s
API CI/CD / Security audit (push) Failing after 59s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped
This commit is contained in:
@@ -9,27 +9,7 @@ class SemesterScore extends BaseModel
|
||||
{
|
||||
protected $table = 'semester_scores';
|
||||
|
||||
protected $fillable = [
|
||||
'student_id',
|
||||
'school_id',
|
||||
'class_section_id',
|
||||
'updated_by',
|
||||
'homework_avg',
|
||||
'quiz_avg',
|
||||
'project_avg',
|
||||
'midterm_exam_score',
|
||||
'final_exam_score',
|
||||
'attendance_score',
|
||||
'participation_score',
|
||||
'ptap_score',
|
||||
'test_avg',
|
||||
'semester_score',
|
||||
'calculation_mode',
|
||||
'calculation_policy_version',
|
||||
'snapshot_id',
|
||||
'semester',
|
||||
'school_year',
|
||||
];
|
||||
protected $fillable = ['student_id', 'school_id', 'class_section_id', 'updated_by', 'homework_avg', 'quiz_avg', 'project_avg', 'midterm_exam_score', 'final_exam_score', 'attendance_score', 'participation_score', 'ptap_score', 'test_avg', 'semester_score', 'semester', 'school_year', 'created_at', 'updated_at'];
|
||||
|
||||
/**
|
||||
* If your table has created_at/updated_at columns, keep this true (default).
|
||||
|
||||
Reference in New Issue
Block a user