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:
@@ -14,22 +14,7 @@ class Competition extends BaseModel
|
||||
// ✅ legacy: useTimestamps = true (created_at/updated_at) + deleted_at for soft deletes
|
||||
public $timestamps = true;
|
||||
|
||||
protected $fillable = [
|
||||
'title',
|
||||
'semester',
|
||||
'school_year',
|
||||
'class_section_id',
|
||||
'start_date',
|
||||
'end_date',
|
||||
'winners_count',
|
||||
'prize_per_point',
|
||||
'is_published',
|
||||
'published_at',
|
||||
'is_locked',
|
||||
'locked_at',
|
||||
'locked_by',
|
||||
'created_by',
|
||||
];
|
||||
protected $fillable = ['title', 'semester', 'school_year', 'class_section_id', 'start_date', 'end_date', 'winners_count', 'prize_per_point', 'is_published', 'published_at', 'created_by', 'created_at', 'updated_at', 'deleted_at', 'is_locked', 'locked_at', 'locked_by'];
|
||||
|
||||
protected $casts = [
|
||||
'class_section_id' => 'integer',
|
||||
|
||||
Reference in New Issue
Block a user