wp_filled_in_errors

Static

Stores filled in errors data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
form_idint(11) unsignedNO
data_idint(11) unsignedNO
typeenum('pre','post','filter','result')NO
messagetextNO

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