wp_fb_admin
StaticStores fb admin data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑user_id | INT(11) | NO |
| user_name | VARCHAR(20) | YES |
| user_pass | VARCHAR(50) | YES |
| pwd | VARCHAR(100) | YES |
| user_email | VARCHAR(50) | YES |
| user_privilege | INT(11) | YES |
CREATE TABLE Statement
CREATE TABLE `fb_admin` ( `user_id` INT(11) NOT NULL AUTO_INCREMENT, `user_name` VARCHAR(20) DEFAULT NULL, `user_pass` VARCHAR(50) DEFAULT NULL, `pwd` VARCHAR(100) DEFAULT NULL, `user_email` VARCHAR(50) DEFAULT NULL, `user_privilege` INT(11) DEFAULT '0', PRIMARY KEY (`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_admin`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from RackForms Express Web Form Builder