wp_gfform_labels

Static

Stores gfform labels data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(7)NO
gfform_idvarchar(255)YES
gflabel_namevarchar(255)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_gfform_labels ( id int(7) NOT NULL auto_increment, gfform_id varchar(255) default NULL, gflabel_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_gfform_labels`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Manage Folders and Labels