mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
change primary key to string instead of array
because it is not a composite key and the load method gets confused otherwise
This commit is contained in:
@@ -9,7 +9,7 @@ class Benutzer_model extends DB_Model
|
||||
{
|
||||
parent::__construct();
|
||||
$this->dbTable = 'public.tbl_benutzer';
|
||||
$this->pk = array('uid');
|
||||
$this->pk = 'uid';
|
||||
$this->hasSequence = false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user