Change primaryKey and displayField for Config

This commit is contained in:
Kyle Johnson 2015-02-27 11:17:30 -05:00
parent 84e7f463fa
commit a228a5077c
1 changed files with 2 additions and 2 deletions

View File

@ -18,13 +18,13 @@ class Config extends AppModel {
* *
* @var string * @var string
*/ */
public $primaryKey = 'Id'; public $primaryKey = 'Name';
/** /**
* Display field * Display field
* *
* @var string * @var string
*/ */
public $displayField = 'Name'; public $displayField = 'Value';
} }