mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-23 09:52:22 +00:00
16 lines
251 B
PHP
16 lines
251 B
PHP
<?php
|
|
class Studienjahr_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'public.tbl_studienjahr';
|
|
$this->pk = 'studienjahr_kurzbz';
|
|
$this->hasSequence = false;
|
|
}
|
|
}
|