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.
 
 
 
 

15 lines
250 B

  1. # Add new ONS ward codes to districts table
  2. # E05000555
  3. require_relative "../app"
  4. c = 5000555
  5. District.all(:body_id => 1, :order => [:name]).each do |d|
  6. d.ons_district_code = "E%08d" % c
  7. d.save
  8. puts d.name, d.ons_district_code
  9. c += 1
  10. end