Skip to content

Instantly share code, notes, and snippets.

@vaskaloidis
Created January 19, 2021 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vaskaloidis/c02f67efb0604608df74995911d33a52 to your computer and use it in GitHub Desktop.
Save vaskaloidis/c02f67efb0604608df74995911d33a52 to your computer and use it in GitHub Desktop.
if Rails.env.development? || Rails.env.test?
puts 'Deleting Line Items, Orders and Products'
LineItem.delete_all
Order.delete_all
Product.delete_all
else
puts 'NOT DELETING LINE-ITEMS, ORDERS, and PRODUCTS'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment