Election results in the London Borough of Sutton.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
236 B

  1. require 'csv'
  2. require './models'
  3. CSV.foreach(ARGV.shift) do |row|
  4. pc = row[0].strip
  5. puts pc
  6. if @postcode = Postcode.get(pc)
  7. @postcode.polling_station_id = row[1]
  8. @postcode.save
  9. else
  10. puts "#{pc} not found"
  11. end
  12. end