wp_formation_entries
VerifiedStores form submissions and user-entered data.
CREATE TABLE Statement
CREATE TABLE `wp_formation_entries` (\n `id` bigint NOT NULL AUTO_INCREMENT,\n `form_id` bigint NOT NULL,\n `form_data` longtext COLLATE utf8mb4_unicode_520_ci,\n `source_url` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT '',\n `status` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT 'unread',\n `is_favourite` tinyint(1) DEFAULT '0',\n `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT '',\n `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled Formation Forms – Contact Form, 200 Form Designs, Powerful Builder, 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_formation_entries`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.