wp_azr_fb_history
StaticStores azr fb history data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| sender | bigint(30) | NO |
| recipient | bigint(30) | NO |
| timestamp | int(11) unsigned | NO |
| message | text | YES |
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