wp_wc_imaxel_projects
StaticStores wc imaxel projects data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) unsigned | NO |
| user_id | bigint(20) | NO |
| project_id | bigint(20) | NO |
| project_name | varchar(255) | NO |
| project_title_customer | varchar(255) | YES |
| project_module_code | varchar(50) | YES |
| product_price | decimal(20,6) | NO |
| project_design_pages | int(11) | YES |
| project_design_pages_copies | int(11) | YES |
| project_product_code | varchar(255) | NO |
| project_variant_code | varchar(255) | NO |
| project_variant_name | varchar(255) | YES |
| project_custom_options | longtext | YES |
| project_sku | varchar(255) | YES |
| wc_product_id | bigint(20) | NO |
| wc_product_variation_id | bigint(20) | NO |
| wc_product_variations | longtext | NO |
| created_date | DATETIME | NO |
| modified_date | DATETIME | NO |
| is_valid_project | tinyint(1) | YES |
CREATE TABLE Statement
CREATE TABLE wp_wc_imaxel_projects ( ID bigint(20) unsigned NOT NULL AUTO_INCREMENT, user_id bigint(20) NOT NULL, project_id bigint(20) NOT NULL, project_name varchar(255) NOT NULL, project_title_customer varchar(255) DEFAULT NULL, project_module_code varchar(50) NULL, product_price decimal(20,6) NOT NULL, project_design_pages int(11) NULL, project_design_pages_copies int(11) NULL, project_product_code varchar(255) NOT NULL, project_variant_code varchar(255) NOT NULL, project_variant_name varchar(255) DEFAULT NULL, project_custom_options longtext DEFAULT NULL, project_sku varchar(255) DEFAULT NULL, wc_product_id bigint(20) NOT NULL, wc_product_variation_id bigint(20) NOT NULL, wc_product_variations longtext NOT NULL, created_date DATETIME NOT NULL, modified_date DATETIME NOT NULL, is_valid_project tinyint(1) 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_projects`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Imaxel editors for WooCommerce