wp_azm_woo_abandoned_carts_rules

Static

Stores azm woo abandoned carts rules data created by this plugin.

Column Definitions

ColumnTypeNullable
visitor_idvarchar(32)NO
abandoned_timestampint(11) unsignedNO
rule_idint(11)NO
statusvarchar(11)YES
sent_timestampint(11) unsignedYES
open_timestampint(11) unsignedYES
click_timestampint(11) unsignedYES
unsubscribe_timestampint(11) unsignedYES

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