wp_gf_gfolders
StaticStores gf gfolders data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(7) | NO |
| gfform_id | varchar(255) | YES |
| gf_gfolder | varchar(255) | YES |
| gfform_name | varchar(255) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_gf_gfolders ( id int(7) NOT NULL auto_increment, gfform_id varchar(255) default NULL, gf_gfolder varchar(255) default NULL, gfform_name varchar(255) default NULL, PRIMARY KEY (id))" . $collate );
Safe to delete?
If you have uninstalled Manage Folders and Labels, 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_gf_gfolders`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Manage Folders and Labels