How to upload a file using a model

Comparing #13 with #14

Content

[...]
// ... other attributes

public function rules()
{
return array(
array('image', 'file', 'types'=>'jpg, gif, png'
, 'safe' => false),
);
}
}
```
[...]