mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
15 lines
231 B
PHP
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');
|
|
}
|
|
}
|