Files
FHC-Core/application/models/education/Lvinfo_model.php
2024-10-17 15:34:00 +02:00

15 lines
231 B
PHP

<?php
class Lvinfo_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_lvinfo';
$this->pk = array('sprache', 'lehrveranstaltung_id');
}
}