Changed the primaryKey to the actual primary key of the Config table

This commit is contained in:
Kyle Johnson 2013-05-06 11:05:33 -04:00
parent 5f7e4a3471
commit 869b84732d
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<?php
class Config extends AppModel {
public $useTable = 'Config';
public $primaryKey = 'Id';
public $primaryKey = 'Name';
}
?>