wp_filled_in_extensions
StaticStores filled in extensions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| form_id | int(11) unsigned | NO |
| name | varchar(50) | YES |
| base | enum('pre','filter','post','result') | NO |
| type | varchar(50) | NO |
| config | text | NO |
| position | int(10) unsigned | NO |
| status | enum('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