Currently I have a PHP application that runs without any framework.
For several reasons I would like to rebuild that application by using the CakePHP framework. However, this application has an old database scheme that doesn't comply with Cake's practices (it's even not in English).
I would like to rebuild this application piece by piece and continue using the old one for the parts that haven't migrated yet, so I cannot make any real schema changes.
Is it possible to create some sort of route of proxy between new scheme and old scheme? So that is't possible in Cake to work like I want to (e.g. field 'user_name' in Model "User") but on the background still use old database scheme (e.g. 'naam' in table 'gebruikers').