wp_filled_in_errors
StaticStores filled in errors data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| form_id | int(11) unsigned | NO |
| data_id | int(11) unsigned | NO |
| type | enum('pre','post','filter','result') | NO |
| message | text | NO |
CREATE TABLE Statement
CREATE TABLE `wp_filled_in_errors` ( `id` int(11) unsigned NOT NULL auto_increment, `form_id` int(11) unsigned NOT NULL default '0', `data_id` int(11) unsigned NOT NULL default '0', `type` enum('pre','post','filter','result') NOT NULL default 'pre', `message` text NOT NULL, 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_errors`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Filled In