wp_azr_fb_history

Static

Stores azr fb history data created by this plugin.

Column Definitions

ColumnTypeNullable
senderbigint(30)NO
recipientbigint(30)NO
timestampint(11) unsignedNO
messagetextYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_azr_fb_history ( sender bigint(30) NOT NULL, recipient bigint(30) NOT NULL, timestamp int(11) unsigned NOT NULL, message text, UNIQUE KEY sender (sender), UNIQUE KEY recipient (recipient) ) $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_history`;

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

Other tables from Live Chat Marketing Automation