Created
January 19, 2021 20:41
-
-
Save vaskaloidis/c02f67efb0604608df74995911d33a52 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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