Why is cake ignoring my Model? Do not understand. I have several other models working perfectly, but this one is not working. It is being ignored.
Name of the model: Typeservers.php
Model Content:
App::uses('AppModel', 'Model');
class TiposObservacao extends AppModel {
public $useTable = 'tipos_observacoes';
public $primaryKey = 'tipo_observacao_id';
public $hasMany = array(
"Observacao" => array(
'className' => 'Atendimento.Observacao',
'foreignKey' => 'tipo_observacao_id',
)
);
}