Skip to content

Instantly share code, notes, and snippets.

@TiuTalk
Created July 2, 2011 23:46
Show Gist options
  • Save TiuTalk/1061790 to your computer and use it in GitHub Desktop.
Save TiuTalk/1061790 to your computer and use it in GitHub Desktop.
Model de inscrições com outros atributos
<?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