Wow, I just discovered Grocery CRUD. It looks great!
I have one question about relations. Is it possible to use set_relation() when the name of the field isn't the same. Example:
Table Users:
-----------
id
username
password
Table Profiles:
------------
id
user_id
first_name
last_name
Can I relate the "id" field from the Users table with "user_id" field from the Profiles table?
(It's an existing project so renaming "id" to "user_id" is a bit difficult).
Thanks.