Created
July 2, 2011 23:46
-
-
Save TiuTalk/1061790 to your computer and use it in GitHub Desktop.
Model de inscrições com outros atributos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Inscricao extends AppModel { | |
// Nome do model | |
public $name = 'Inscricao'; | |
// Nome da tabela | |
public $useTable = 'inscricoes'; | |
// Cacheia consultas | |
public $cacheQueries = true; | |
// Ordem padrão de consulta | |
public $order = array('created' => 'DESC'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment