peteretep / requi

0 stars 0 forks source link

Import questions into database #2

Open peteretep opened 9 years ago

peteretep commented 9 years ago

The requisitions questions need to be added to the database. This should be done in a seed file db/seeds.rb

country_list = [
  [ "Germany", 81831000 ],
  [ "France", 65447374 ],
  [ "Belgium", 10839905 ],
  [ "Netherlands", 16680000 ]
]

country_list.each do |name, population|
  Country.create( name: name, population: population )
end

Requisitions on title 2015.pdf | uploaded via ZenHub