wp_azm_woo_abandoned_carts_rules
StaticStores azm woo abandoned carts rules data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| visitor_id | varchar(32) | NO |
| abandoned_timestamp | int(11) unsigned | NO |
| rule_id | int(11) | NO |
| status | varchar(11) | YES |
| sent_timestamp | int(11) unsigned | YES |
| open_timestamp | int(11) unsigned | YES |
| click_timestamp | int(11) unsigned | YES |
| unsubscribe_timestamp | int(11) unsigned | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_azm_woo_abandoned_carts_rules ( visitor_id varchar(32) NOT NULL, abandoned_timestamp int(11) unsigned NOT NULL, rule_id int(11) NOT NULL, status varchar(11), sent_timestamp int(11) unsigned, open_timestamp int(11) unsigned, click_timestamp int(11) unsigned, unsubscribe_timestamp int(11) unsigned, PRIMARY KEY abandoned_cart_rule (visitor_id, abandoned_timestamp, rule_id), KEY rule (rule_id) ) $collate;");
Safe to delete?
If you have uninstalled Recover Abandoned Cart 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_azm_woo_abandoned_carts_rules`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Recover Abandoned Cart for WooCommerce