I have 20 tables in my MySQL database. I read the Kohana documentation and learned that in order for ORM to work properly, the primary key of tables should be named 'id'.
I have created my tables before knowing this requirement and primary key are named in the format ID (eg:- UsersID). I believe, if i change the name of the primary keys then i have to reset all the references(FK) manually which is a herculean task.
I am using Workbench and is there any option available to automtically update references(FK) once i change the name of the primary key.