wp_fb_auto_programs
StaticStores fb auto programs data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(10) | NO |
| id_page | VARCHAR(50) | YES |
| latest_random | VARCHAR(20) | YES |
| nbr | VARCHAR(20) | YES |
| live | VARCHAR(10) | YES |
| sched | VARCHAR(20) | YES |
| cat | VARCHAR(30) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_fb_auto_programs (id int(10) NOT NULL AUTO_INCREMENT, id_page VARCHAR(50), latest_random VARCHAR(20), nbr VARCHAR(20), live VARCHAR(10), sched VARCHAR(20), cat VARCHAR(30), 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_auto_programs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Social Media Auto Post and Scheduling contents