wp_azr_fb_campaigns

Static

Stores azr fb campaigns data created by this plugin.

Column Definitions

ColumnTypeNullable
visitor_idvarchar(32)NO
campaign_idbigint(20)NO
statusvarchar(10)YES
sent_timestampint(11) unsignedYES
read_timestampint(11) unsignedYES
click_timestampint(11) unsignedYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_azr_fb_campaigns ( visitor_id varchar(32) NOT NULL, campaign_id bigint(20) NOT NULL, status varchar(10), sent_timestamp int(11) unsigned, read_timestamp int(11) unsigned, click_timestamp int(11) unsigned, UNIQUE KEY campaign (campaign_id, visitor_id), KEY status (status) ) $collate;");

Safe to delete?

If you have uninstalled Live Chat Marketing Automation, 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_azr_fb_campaigns`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Live Chat Marketing Automation