wp_fb_job_entries
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) | NO |
| job_id | INT(11) | NO |
| ts | INT(11) | YES |
| name | VARCHAR(255) | YES |
| label | VARCHAR | YES |
| entry_value | TEXT | YES |
| file_data | LONGBLOB | YES |
| file_mime | VARCHAR(50) | YES |
| file_name | VARCHAR(255) | YES |
| entry_key | VARCHAR(50) | YES |
| entry_type | VARCHAR(20) | YES |
| remote_ip | VARCHAR(50) | YES |
CREATE TABLE Statement
CREATE TABLE `fb_job_entries` ( `id` INT(11) NOT NULL AUTO_INCREMENT, `job_id` INT(11) NOT NULL, `ts` INT(11) DEFAULT NULL, `name` VARCHAR(255) DEFAULT NULL, `label` VARCHAR (255) DEFAULT NULL, `entry_value` TEXT, `file_data` LONGBLOB, `file_mime` VARCHAR(50) DEFAULT NULL, `file_name` VARCHAR(255) DEFAULT NULL, `entry_key` VARCHAR(50) DEFAULT NULL, `entry_type` VARCHAR(20) DEFAULT NULL, `remote_ip` VARCHAR(50) DEFAULT NULL, PRIMARY KEY (`id`), INDEX index1 USING BTREE (`job_id`), INDEX IDX_ts USING BTREE (`ts`), INDEX IDX_entry_key USING BTREE (`entry_key`), CONSTRAINT `fb_job_entries_FK1` FOREIGN KEY (`job_id`) REFERENCES `fb_jobs` (`id`) ON DELETE CASCADE ) 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_job_entries`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from RackForms Express Web Form Builder