sparch model

This commit is contained in:
Paminger
2016-05-02 00:37:42 +02:00
parent a6d708a763
commit 5bd5ac4aad
+16
View File
@@ -0,0 +1,16 @@
<?php
class Sprache_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable='public.tbl_sprache';
$this->pk='sprache';
}
}