In rails I generate a model with two strings and would like to add more. How would I go about doing this?
If you are using the Rails 4.x you can now generate migrations with references, like this:
rails generate migration AddUserRefToProducts user:references
like you can see on rails guides