wp_ecf
StaticStores ecf data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) | NO |
| page | varchar(512) | NO |
| complete | BLOB | YES |
| contact_time | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE wp_ecf ( id mediumint(9) NOT NULL PRIMARY KEY AUTO_INCREMENT, page varchar(512) NOT NULL, complete BLOB, contact_time TIMESTAMP) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci");
Safe to delete?
If you have uninstalled Contact Form DB for Enfold, 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_ecf`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.