I'm a beginner to ruby on rails that's migrating an access database to RoR.
In the database there is a table named tasks and a table named users.
The table tasks has two foreign keys to the table users: task_created_by and task_finished_by.
I wanted to create everything using the scaffold tool. Is it possible?
Also, which name should I give to the two foreign keys?