wp_wemail_forms

Static

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
idvarchar(36)NO
namevarchar(150)YES
templatelongtextYES
plugin_versionvarchar(10)YES
settingslongtextYES
typevarchar(191)YES
statustinyint(1)YES
deleted_attimestampYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_wemail_forms` ( `id` varchar(36) NOT NULL, `name` varchar(150) DEFAULT NULL, `template` longtext NULL, `plugin_version` varchar(10) NULL, `settings` longtext NULL, `type` varchar(191) DEFAULT 'inline', `status` tinyint(1) DEFAULT '1', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) {$charset_collate}"; if ( ! function_exists( 'dbDelta' ) ) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; } dbDelta( $table_schema );

Safe to delete?

If you have uninstalled weMail: Email Marketing, Email Automation, Newsletters, Subscribers & Email Optins for WooCommerce, 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_wemail_forms`;

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