wp_wsf_field
LiveStores wsf field data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_wsf_field` (\n `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `section_id` bigint unsigned NOT NULL,\n `user_id` bigint unsigned NOT NULL,\n `label` varchar(1024) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `sort_index` bigint unsigned NOT NULL,\n `type` varchar(32) COLLATE utf8mb4_unicode_520_ci 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 PRIMARY KEY (`id`),\n KEY `label` (`label`(191)),\n KEY `type` (`type`),\n KEY `section_id` (`section_id`),\n KEY `section_id_sort_index` (`section_id`,`sort_index`)\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_field`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WS Form LITE – Drag & Drop Contact Form Builder