Skip to content

Instantly share code, notes, and snippets.

@syndicut
Created September 2, 2012 15:42
Show Gist options
  • Save syndicut/3600683 to your computer and use it in GitHub Desktop.
Save syndicut/3600683 to your computer and use it in GitHub Desktop.
Remove variants with duplicate sku's for spree commerce
Variant.where({:is_master => false}).each { |v| Variant.where({:sku => v.sku}).where(['id != ?', v.id]).where({:is_master => false}).delete_all }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment