wp_adv_dem_product_attributes
StaticStores product records and related data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| property_Name | VARCHAR(255) | NO |
| property_Wc_Id | INT | NO |
| property_Adv_Id | INT | NO |
| property_Last_Update | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_adv_dem_product_attributes ( `id` INT NOT NULL AUTO_INCREMENT, `property_Name` VARCHAR(255) NOT NULL, `property_Wc_Id` INT NOT NULL, `property_Adv_Id` INT NOT NULL, `property_Last_Update` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, UNIQUE KEY id (id) )$charset_collate;") );
Safe to delete?
If you have uninstalled Email Marketing Integration Adv, 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_adv_dem_product_attributes`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Marketing Integration Adv