wp_fb_pages
StaticStores fb pages data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(50) | NO |
| name | VARCHAR(80) | YES |
| page_id | VARCHAR(80) | YES |
| page_access_token | VARCHAR(255) | YES |
| app_id | VARCHAR(100) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_fb_pages (id int(50) NOT NULL AUTO_INCREMENT, name VARCHAR(80) CHARACTER SET utf8 COLLATE utf8_unicode_ci, page_id VARCHAR(80), page_access_token VARCHAR(255), app_id VARCHAR(100), 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_pages`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Social Media Auto Post and Scheduling contents