wp_wsf_submit
LiveStores wsf submit data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_wsf_submit` (\n `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `form_id` bigint unsigned NOT NULL,\n `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',\n `date_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',\n `date_expire` datetime DEFAULT NULL,\n `user_id` bigint unsigned NOT NULL,\n `hash` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `actions` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `section_repeatable` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `count_submit` bigint unsigned NOT NULL,\n `duration` bigint unsigned NOT NULL,\n `status` char(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `preview` tinyint(1) NOT NULL,\n `spam_level` tinyint(1) DEFAULT NULL,\n `starred` tinyint(1) NOT NULL DEFAULT '0',\n `viewed` tinyint(1) NOT NULL DEFAULT '0',\n `encrypted` tinyint(1) NOT NULL DEFAULT '0',\n `token` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `token_validated` tinyint(1) NOT NULL DEFAULT '0',\n PRIMARY KEY (`id`),\n KEY `form_id` (`form_id`),\n KEY `date_added` (`date_added`),\n KEY `date_expire` (`date_expire`),\n KEY `user_id` (`user_id`),\n KEY `viewed` (`viewed`),\n KEY `hash` (`hash`),\n KEY `status` (`status`),\n KEY `token` (`token`),\n KEY `form_id_status` (`form_id`,`status`),\n KEY `form_id_viewed_status` (`form_id`,`viewed`,`status`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled WS Form LITE – Drag & Drop Contact Form 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_wsf_submit`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WS Form LITE – Drag & Drop Contact Form Builder