wp_wsf_form_meta

Live

Stores additional metadata (key-value pairs) for wsf form records.

CREATE TABLE Statement

CREATE TABLE `wp_wsf_form_meta` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `parent_id` bigint unsigned NOT NULL,\n  `meta_key` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT 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) 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_form_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