wp_mailchimp_carts
StaticStores mailchimp carts data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| id | VARCHAR | NO |
| VARCHAR | NO | |
| user_id | INT | YES |
| cart | text | NO |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_mailchimp_carts ( id VARCHAR (255) NOT NULL, email VARCHAR (100) NOT NULL, user_id INT (11) DEFAULT NULL, cart text NOT NULL, created_at datetime NOT NULL, PRIMARY KEY (email) ) $charset_collate;"; dbDelta( $sql );
Safe to delete?
If you have uninstalled Mailchimp 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_mailchimp_carts`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Mailchimp for WooCommerce