wp_fb_auto_programs

Static

Stores fb auto programs data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(10)NO
id_pageVARCHAR(50)YES
latest_randomVARCHAR(20)YES
nbrVARCHAR(20)YES
liveVARCHAR(10)YES
schedVARCHAR(20)YES
catVARCHAR(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