wp_fb_jobs
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) | NO |
| job_name | VARCHAR(50) | YES |
| created | VARCHAR(12) | YES |
| created_ts | DATETIME | YES |
| last_edit | VARCHAR(12) | YES |
| last_edit_ts | DATETIME | YES |
| user_id | INT(11) | YES |
| job_xml | LONGTEXT | YES |
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