{"slug":"ws-form","name":"WS Form LITE – Drag & Drop Contact Form Builder","description":"Contact form builder for WordPress. Create professional, accessible, mobile-friendly forms in minutes without coding.","author":"Mark Westguard","active_installs":10000,"version":"1.11.15","wp_org_url":"https://wordpress.org/plugins/ws-form/","is_closed":false,"cleanup":{"has_uninstall_hook":true,"drops_tables_on_uninstall":false,"deletes_options_on_uninstall":false},"tables":[{"table_name":"field","full_table_name":"wp_field","description":"Stores field data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"field_meta","full_table_name":"wp_field_meta","description":"Stores additional metadata (key-value pairs) for field records.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"form","full_table_name":"wp_form","description":"Stores form data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"form_meta","full_table_name":"wp_form_meta","description":"Stores additional metadata (key-value pairs) for form records.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"form_stat","full_table_name":"wp_form_stat","description":"Stores analytics or statistics data.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"group","full_table_name":"wp_group","description":"Stores group data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"group_meta","full_table_name":"wp_group_meta","description":"Stores additional metadata (key-value pairs) for group records.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"section","full_table_name":"wp_section","description":"Stores section data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"section_meta","full_table_name":"wp_section_meta","description":"Stores additional metadata (key-value pairs) for section records.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"style","full_table_name":"wp_style","description":"Stores style data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"style_meta","full_table_name":"wp_style_meta","description":"Stores additional metadata (key-value pairs) for style records.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"submit","full_table_name":"wp_submit","description":"Stores submit data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"submit_meta","full_table_name":"wp_submit_meta","description":"Stores additional metadata (key-value pairs) for submit records.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"wsf_field","full_table_name":"wp_wsf_field","description":"Stores wsf field data created by this plugin.","detection_method":"live","confidence":"high","columns":[],"create_sql":"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"},{"table_name":"wsf_field_meta","full_table_name":"wp_wsf_field_meta","description":"Stores additional metadata (key-value pairs) for wsf field records.","detection_method":"live","confidence":"high","columns":[],"create_sql":"CREATE TABLE `wp_wsf_field_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"},{"table_name":"wsf_form","full_table_name":"wp_wsf_form","description":"Stores form definitions and related configuration.","detection_method":"live","confidence":"high","columns":[],"create_sql":"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"},{"table_name":"wsf_form_meta","full_table_name":"wp_wsf_form_meta","description":"Stores additional metadata (key-value pairs) for wsf form records.","detection_method":"live","confidence":"high","columns":[],"create_sql":"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"},{"table_name":"wsf_form_stat","full_table_name":"wp_wsf_form_stat","description":"Stores form definitions and related configuration.","detection_method":"live","confidence":"high","columns":[],"create_sql":"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"},{"table_name":"wsf_group","full_table_name":"wp_wsf_group","description":"Stores wsf group data created by this plugin.","detection_method":"live","confidence":"high","columns":[],"create_sql":"CREATE TABLE `wp_wsf_group` (\\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\\n  `form_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  `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 `form_id` (`form_id`),\\n  KEY `label` (`label`(191)),\\n  KEY `sort_index` (`sort_index`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci"},{"table_name":"wsf_group_meta","full_table_name":"wp_wsf_group_meta","description":"Stores additional metadata (key-value pairs) for wsf group records.","detection_method":"live","confidence":"high","columns":[],"create_sql":"CREATE TABLE `wp_wsf_group_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"},{"table_name":"wsf_section","full_table_name":"wp_wsf_section","description":"Stores wsf section data created by this plugin.","detection_method":"live","confidence":"high","columns":[],"create_sql":"CREATE TABLE `wp_wsf_section` (\\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\\n  `parent_section_id` bigint unsigned NOT NULL DEFAULT '0',\\n  `group_id` bigint unsigned NOT NULL DEFAULT '0',\\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  `child_count` bigint unsigned NOT NULL DEFAULT '0',\\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 `parent_section_id` (`parent_section_id`),\\n  KEY `label` (`label`(191)),\\n  KEY `group_id` (`group_id`),\\n  KEY `sort_index` (`sort_index`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci"},{"table_name":"wsf_section_meta","full_table_name":"wp_wsf_section_meta","description":"Stores additional metadata (key-value pairs) for wsf section records.","detection_method":"live","confidence":"high","columns":[],"create_sql":"CREATE TABLE `wp_wsf_section_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"},{"table_name":"wsf_style","full_table_name":"wp_wsf_style","description":"Stores wsf style data created by this plugin.","detection_method":"live","confidence":"high","columns":[],"create_sql":"CREATE TABLE `wp_wsf_style` (\\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 'publish',\\n  `default` tinyint(1) NOT NULL DEFAULT '0',\\n  `default_conv` tinyint(1) 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 `default` (`default`)\\n) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci"},{"table_name":"wsf_style_meta","full_table_name":"wp_wsf_style_meta","description":"Stores additional metadata (key-value pairs) for wsf style records.","detection_method":"live","confidence":"high","columns":[],"create_sql":"CREATE TABLE `wp_wsf_style_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 AUTO_INCREMENT=576 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci"},{"table_name":"wsf_submit","full_table_name":"wp_wsf_submit","description":"Stores wsf submit data created by this plugin.","detection_method":"live","confidence":"high","columns":[],"create_sql":"CREATE TABLE `wp_wsf_submit` (\\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\\n  `form_id` bigint unsigned 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_expire` datetime DEFAULT NULL,\\n  `user_id` bigint unsigned NOT NULL,\\n  `hash` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,\\n  `actions` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\\n  `section_repeatable` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\\n  `count_submit` bigint unsigned NOT NULL,\\n  `duration` bigint unsigned NOT NULL,\\n  `status` char(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,\\n  `preview` tinyint(1) NOT NULL,\\n  `spam_level` tinyint(1) DEFAULT NULL,\\n  `starred` tinyint(1) NOT NULL DEFAULT '0',\\n  `viewed` tinyint(1) NOT NULL DEFAULT '0',\\n  `encrypted` tinyint(1) NOT NULL DEFAULT '0',\\n  `token` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,\\n  `token_validated` tinyint(1) NOT NULL DEFAULT '0',\\n  PRIMARY KEY (`id`),\\n  KEY `form_id` (`form_id`),\\n  KEY `date_added` (`date_added`),\\n  KEY `date_expire` (`date_expire`),\\n  KEY `user_id` (`user_id`),\\n  KEY `viewed` (`viewed`),\\n  KEY `hash` (`hash`),\\n  KEY `status` (`status`),\\n  KEY `token` (`token`),\\n  KEY `form_id_status` (`form_id`,`status`),\\n  KEY `form_id_viewed_status` (`form_id`,`viewed`,`status`)\\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci"},{"table_name":"wsf_submit_meta","full_table_name":"wp_wsf_submit_meta","description":"Stores additional metadata (key-value pairs) for wsf submit records.","detection_method":"live","confidence":"high","columns":[],"create_sql":"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"}],"table_count":26}