wp_wsf_form_stat

Live

Stores form definitions and related configuration.

CREATE TABLE Statement

CREATE TABLE `wp_wsf_form_stat` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `form_id` bigint unsigned NOT NULL,\n  `count_view` bigint unsigned NOT NULL,\n  `count_save` bigint unsigned NOT NULL,\n  `count_submit` bigint unsigned NOT NULL,\n  PRIMARY KEY (`id`),\n  KEY `form_id` (`form_id`),\n  KEY `date_added` (`date_added`)\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_stat`;

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

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