Advertisement
Guest User

mebels_products

a guest
Sep 1st, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Product.where("service_id = 2 AND id > 380093").each do |pr|
  2. begin
  3. pr.description = pr.description.encode('ISO8859-1').force_encoding('UTF-8')
  4. pr.title = pr.title.encode('ISO8859-1').force_encoding('UTF-8')
  5. pr.save
  6. rescue
  7. next
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement