Files
FHC-Core/application/models/education/Studentlehrverband_model.php
2024-08-08 16:24:23 +02:00

18 lines
369 B
PHP

<?php
class Studentlehrverband_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_studentlehrverband';
$this->pk = array('studiensemester_kurzbz', 'student_uid');
$this->hasSequence = false;
$this->load->model('crm/prestudentstatus_model', 'PrestudentstatusModel');
}
}