I'm fairly new to RoR and I'm developing some basic role-based permissions model for users.
However, I want some roles to be in the database by default, where do I insert the respective rows into my db?
So far, I'm doing it in a separate migration, that simply 'create!'s the respective objects.
However if I run rake db:migrate && rake db:test:prepare
, only my development db gets populated with the data, while the test-db only updates its schema and stays empty.
So, how/where do I insert such default data into my databases?
thx for any help