Reverted changes in application/models/person/Benutzer_model.php, pk => array

This commit is contained in:
Paolo
2022-07-13 09:45:58 +02:00
parent 8b8515ee03
commit 4dab69cb15
+1 -1
View File
@@ -9,7 +9,7 @@ class Benutzer_model extends DB_Model
{
parent::__construct();
$this->dbTable = 'public.tbl_benutzer';
$this->pk = 'uid';
$this->pk = array('uid');
$this->hasSequence = false;
}