wp_fb_logs

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idint(10)NO
pageVARCHAR(80)YES
articleVARCHAR(200)YES
lienVARCHAR(200)YES
datexVARCHAR(20)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_fb_logs (id int(10) NOT NULL AUTO_INCREMENT, page VARCHAR(80),article VARCHAR(200),lien VARCHAR(200),datex VARCHAR(20), PRIMARY KEY (id));

Safe to delete?

If you have uninstalled Social Media Auto Post and Scheduling contents, 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_fb_logs`;

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

Other tables from Social Media Auto Post and Scheduling contents