Submit social housing lettings and sales data (CORE)
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.
 
 
 
 

19 lines
451 B

desc "Squish names of locations, schemes, users, and organisations"
task squish_names: :environment do
Location.find_each do |location|
location.name.squish!
location.save!
end
Scheme.find_each do |scheme|
scheme.service_name.squish!
scheme.save!
end
User.find_each do |user|
user.name.squish!
user.save!
end
Organisation.find_each do |organisation|
organisation.name.squish!
organisation.save!
end
end