wp_gf_gfolders

Static

Stores gf gfolders data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(7)NO
gfform_idvarchar(255)YES
gf_gfoldervarchar(255)YES
gfform_namevarchar(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