wp_wemail_forms
StaticStores form definitions and related configuration.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| id | varchar(36) | NO |
| name | varchar(150) | YES |
| template | longtext | YES |
| plugin_version | varchar(10) | YES |
| settings | longtext | YES |
| type | varchar(191) | YES |
| status | tinyint(1) | YES |
| deleted_at | timestamp | YES |
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.