wp_wc_imaxel_projects

Static

Stores wc imaxel projects data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDbigint(20) unsignedNO
user_idbigint(20)NO
project_idbigint(20)NO
project_namevarchar(255)NO
project_title_customervarchar(255)YES
project_module_codevarchar(50)YES
product_pricedecimal(20,6)NO
project_design_pagesint(11)YES
project_design_pages_copiesint(11)YES
project_product_codevarchar(255)NO
project_variant_codevarchar(255)NO
project_variant_namevarchar(255)YES
project_custom_optionslongtextYES
project_skuvarchar(255)YES
wc_product_idbigint(20)NO
wc_product_variation_idbigint(20)NO
wc_product_variationslongtextNO
created_dateDATETIMENO
modified_dateDATETIMENO
is_valid_projecttinyint(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