I have a table users that contains details of each user. I'd like to create a new table containing only certain rows from the users table based on a condition (their age for example). How do I do this in rails ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
You have to create a migration. In this migration you first have to create the new table and then you can choose between two options.
|
||||
|
|