wp_azr_fb_campaigns
StaticStores azr fb campaigns data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| visitor_id | varchar(32) | NO |
| campaign_id | bigint(20) | NO |
| status | varchar(10) | YES |
| sent_timestamp | int(11) unsigned | YES |
| read_timestamp | int(11) unsigned | YES |
| click_timestamp | int(11) unsigned | YES |
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