wp_wc_imaxel_product_variants
StaticStores product records and related data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) unsigned | NO |
| parent_product_code | varchar(255) | NO |
| code | varchar(255) | NO |
| name | varchar(255) | NO |
| price_model | varchar(255) | NO |
| price_values | text | NO |
CREATE TABLE Statement
CREATE TABLE wp_wc_imaxel_product_variants ( ID bigint(20) unsigned NOT NULL AUTO_INCREMENT, parent_product_code varchar(255) NOT NULL, code varchar(255) NOT NULL, name varchar(255) NOT NULL, price_model varchar(255) NOT NULL, price_values text 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_product_variants`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Imaxel editors for WooCommerce