Grow your app from seeds
Use rails database seed rake task to instantly add data to your development db, it helps spot design and user flow issues quickly.
Use rails database seed rake task to instantly add data to your development db, it helps spot design and user flow issues quickly.
Comments
Personally I like to have a rake task that populates the database. The rake task uses the same blueprint file (provided by Machinist) as I use in my unit tests.
Post a comment