wp_fb_jobs

Static

A job queue table for managing background tasks and scheduled operations.

Column Definitions

ColumnTypeNullable
🔑idINT(11)NO
job_nameVARCHAR(50)YES
createdVARCHAR(12)YES
created_tsDATETIMEYES
last_editVARCHAR(12)YES
last_edit_tsDATETIMEYES
user_idINT(11)YES
job_xmlLONGTEXTYES

CREATE TABLE Statement

CREATE TABLE `fb_jobs` ( `id` INT(11) NOT NULL AUTO_INCREMENT, `job_name` VARCHAR(50) DEFAULT NULL, `created` VARCHAR(12) DEFAULT NULL, `created_ts` DATETIME DEFAULT NULL, `last_edit` VARCHAR(12) DEFAULT NULL, `last_edit_ts` DATETIME DEFAULT NULL, `user_id` INT(11) DEFAULT NULL, `job_xml` LONGTEXT, PRIMARY KEY (`id`), INDEX IDX_job_name (`job_name`), INDEX IDX_user_id (`user_id`) ) ENGINE

Safe to delete?

If you have uninstalled RackForms Express Web Form Builder, 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_jobs`;

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

Other tables from RackForms Express Web Form Builder