Models
Models are located in sitekly/app/Models. To modify model just create new file with underscore before name.
To change UserModel.php create file _UserModel.php with class name _UserModel.
Creating new model:
class _UserModel extends Model
Extending original model:
class _UserModel extends UserModel{
Don't change the original files directly, they might be overwritten with future updates.