Seeds
Created by: NARKOZ
I think it's more natural way to seed data.
rake db:setup
now will not just create and load schema, but also seed data.
rake db:seed
will seed the data.
Also no need for fixtures.
Created by: NARKOZ
I think it's more natural way to seed data.
rake db:setup
now will not just create and load schema, but also seed data.
rake db:seed
will seed the data.
Also no need for fixtures.