wp_wsf_submit_meta
LiveStores additional metadata (key-value pairs) for wsf submit records.
CREATE TABLE Statement
CREATE TABLE `wp_wsf_submit_meta` (\n `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `parent_id` bigint unsigned NOT NULL,\n `section_id` bigint unsigned DEFAULT NULL,\n `field_id` bigint unsigned DEFAULT NULL,\n `repeatable_index` bigint unsigned DEFAULT NULL,\n `meta_key` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `meta_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n PRIMARY KEY (`id`),\n KEY `parent_id` (`parent_id`),\n KEY `meta_key` (`meta_key`),\n KEY `section_id` (`section_id`),\n KEY `field_id` (`field_id`)\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_meta`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WS Form LITE – Drag & Drop Contact Form Builder