Files
alrahma_sunday_school/app/Models/ReimbursementBatchAdminFileModel.php
root 716cc8b8d3
Tests / PHPUnit (push) Failing after 1m20s
fix school year for all tables
2026-07-18 14:45:38 -04:00

29 lines
628 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
use App\Models\Concerns\SchoolYearAutoFillTrait;
class ReimbursementBatchAdminFileModel extends Model
{
use SchoolYearAutoFillTrait;
protected $table = 'reimbursement_batch_admin_files';
protected $primaryKey = 'id';
protected $allowedFields = [
'batch_id',
'admin_id',
'filename',
'original_filename',
'uploaded_at',
'uploaded_by',
'school_year',
];
protected $validationRules = [
'school_year' => 'required|string|max_length[9]',
];
protected $useTimestamps = false;
}