Using Ruby on Rails, I have created a blog. The blog has posts, and comments associated with each post.
I want to add a name field to the comment controller (or model, not sure), so that the commenter is identified. Since right now it's just a comment that's being added. The name field should be stored in the database.
What is the best way to accomplish this, once I already have things set up and I just want to modify? Can scaffold or generate be used at this point? If so, how?