wp_adv_dem_carts
StaticStores adv dem carts data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| cart_Id | VARCHAR(255) | NO |
| cart_UserId | INT | NO |
| cart_Status | VARCHAR(50) | NO |
| cart_Creation_Time | TIMESTAMP | YES |
| cart_Last_Update | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_adv_dem_carts ( `id` INT NOT NULL AUTO_INCREMENT, `cart_Id` VARCHAR(255) NOT NULL, `cart_UserId` INT NOT NULL, `cart_Status` VARCHAR(50) NOT NULL, `cart_Creation_Time` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, `cart_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_carts`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Marketing Integration Adv