wp_filled_in_extensions

Static

Stores filled in extensions data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
form_idint(11) unsignedNO
namevarchar(50)YES
baseenum('pre','filter','post','result')NO
typevarchar(50)NO
configtextNO
positionint(10) unsignedNO
statusenum('on','off')NO

CREATE TABLE Statement

CREATE TABLE `wp_filled_in_extensions` ( `id` int(11) unsigned NOT NULL auto_increment, `form_id` int(11) unsigned NOT NULL, `name` varchar(50) default NULL, `base` enum('pre','filter','post','result') NOT NULL default 'pre', `type` varchar(50) NOT NULL, `config` text NOT NULL, `position` int(10) unsigned NOT NULL default '0', `status` enum('on','off') NOT NULL default 'on', PRIMARY KEY (`id`) ) ");

Safe to delete?

If you have uninstalled Filled In, 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_filled_in_extensions`;

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

Other tables from Filled In