mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-04 13:49:29 +00:00
15 lines
225 B
PHP
15 lines
225 B
PHP
<?php
|
|
class Stundenplandev_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'lehre.tbl_stundenplandev';
|
|
$this->pk = 'stundenplandev_id';
|
|
}
|
|
}
|