Election results in the London Borough of Sutton.
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- 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
|