wp_wc_imaxel_orders
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) unsigned | NO |
| wc_order_id | bigint(20) | NO |
| imaxel_stored_integrations_data | text | YES |
| imaxel_stored_integrations_response | text | YES |
| creative_services_id | bigint(20) unsigned | YES |
| creative_services_message | text | YES |
| order_manager_id | bigint(20) | YES |
| order_manager_error | text | YES |
CREATE TABLE Statement
CREATE TABLE wp_wc_imaxel_orders ( ID bigint(20) unsigned NOT NULL AUTO_INCREMENT, wc_order_id bigint(20) NOT NULL, imaxel_stored_integrations_data text NULL, imaxel_stored_integrations_response text NULL, creative_services_id bigint(20) unsigned DEFAULT NULL, creative_services_message text NULL, order_manager_id bigint(20) NULL, order_manager_error text NULL, PRIMARY KEY (ID) ) $collate;" );
Safe to delete?
If you have uninstalled Imaxel editors for WooCommerce, this table is generally safe to remove. However, always back up your database first.
Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.
How to remove this table
DROP TABLE IF EXISTS `wp_wc_imaxel_orders`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Imaxel editors for WooCommerce