Revision #5 has been created by fsb on Dec 8, 2011, 1:38:58 PM with the memo:
enums
« previous (#4) next (#6) »
Changes
Title
unchanged
The Comedy of Errors
Category
unchanged
Others
Yii version
unchanged
Tags
unchanged
errors
Content
changed
[...]
then try
```php
array('count', 'numeric', 'integerOnly'=>true),
```
and only then look it up: 'numerical'.
Rules for enums
---------------
In the model rules() method put:
```php
array('format', 'range', 'in' => array('html', 'rss2', 'atom', 'json', 'xml')),
```
then later remind yourself that Yii is not SQL.