Election results in the London Borough of Sutton.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- require 'csv'
- require './models'
-
- CSV.foreach(ARGV.shift) do |row|
- pc = row[0].strip
- puts pc
- if @postcode = Postcode.get(pc)
- @postcode.polling_station_id = row[1]
- @postcode.save
- else
- puts "#{pc} not found"
- end
- end
|