Last active
February 13, 2023 19:09
-
-
Save mklooss/6115f6070f14393cb0e0e5aa71741955 to your computer and use it in GitHub Desktop.
Remove Temando_Shipping from Magento2!
This file contains 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
DELETE FROM eav_attribute WHERE attribute_code IN('ts_dimensions_length', 'ts_dimensions_width', 'ts_dimensions_height', 'ts_packaging_type', 'ts_packaging_id', 'ts_country_of_origin', 'ts_hs_code'); | |
DROP TABLE temando_order; | |
DROP TABLE temando_quote_collection_point; | |
DROP TABLE temando_collection_point_search; | |
DROP TABLE temando_order_collection_point; | |
DROP TABLE temando_quote_pickup_location; | |
DROP TABLE temando_pickup_location_search; | |
DROP TABLE temando_order_pickup_location; | |
DROP TABLE temando_checkout_address; | |
DROP TABLE temando_shipment; | |
DROP TABLE temando_rma_shipment; | |
DELETE FROM core_config_data WHERE `path` LIKE 'carriers/temando/%'; | |
DELETE FROM setup_module WHERE module = 'Temando_Shipping'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment