wp_fb_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(10) | NO |
| page | VARCHAR(80) | YES |
| article | VARCHAR(200) | YES |
| lien | VARCHAR(200) | YES |
| datex | VARCHAR(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