wp_wsf_form

Live

Stores form definitions and related configuration.

CREATE TABLE Statement

CREATE TABLE `wp_wsf_form` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `user_id` bigint unsigned NOT NULL,\n  `label` varchar(1024) 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  `date_publish` datetime DEFAULT NULL,\n  `status` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'draft',\n  `count_stat_view` bigint unsigned NOT NULL DEFAULT '0',\n  `count_stat_save` bigint unsigned NOT NULL DEFAULT '0',\n  `count_stat_submit` bigint unsigned NOT NULL DEFAULT '0',\n  `count_submit` bigint unsigned NOT NULL DEFAULT '0',\n  `count_submit_unread` bigint unsigned NOT NULL DEFAULT '0',\n  `published` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `published_checksum` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `checksum` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `version` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  PRIMARY KEY (`id`),\n  KEY `label` (`label`(191)),\n  KEY `date_added` (`date_added`),\n  KEY `status` (`status`),\n  KEY `count_stat_view` (`count_stat_view`),\n  KEY `count_stat_save` (`count_stat_save`),\n  KEY `count_stat_submit` (`count_stat_submit`),\n  KEY `count_submit` (`count_submit`),\n  KEY `count_submit_unread` (`count_submit_unread`)\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`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from WS Form LITE – Drag & Drop Contact Form Builder