I have just a table on my database named \"ficha_seg\". The name of my model file is \"Ficha.php\" and the name of the controller is \"FichasController.php\".
So, wh
To follow CakePHP conventions your table name should be in plural: ficha_segs and your model name should be 'FichaSeg'.
ficha_segs
If you don't want to follow it for any reason, do what @nlcO says.