wp_wc_imaxel_order_items
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) unsigned | NO |
| imaxel_id | bigint(20) | YES |
| order_id | bigint(20) | NO |
| project_id | bigint(20) | NO |
| job_id | bigint(20) | NO |
CREATE TABLE Statement
CREATE TABLE wp_wc_imaxel_order_items ( ID bigint(20) unsigned NOT NULL AUTO_INCREMENT, imaxel_id bigint(20) NULL, order_id bigint(20) NOT NULL, project_id bigint(20) NOT NULL, job_id bigint(20) NOT 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_order_items`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Imaxel editors for WooCommerce