Election results in the London Borough of Sutton.
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- 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
|