Files
FHC-Core/application/models/testtool/Kriterien_model.php
T
bison-paolo d96a0e98d5 - Fixed codeception test
- Updated the api test suite
- Added the script generate.php to automatically generate the test cases
for the controllers
2016-11-23 15:09:10 +01:00

15 lines
217 B
PHP

<?php
class Kriterien_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'testtool.tbl_kriterien';
$this->pk = 'kategorie_kurzbz';
}
}