wp_edu_ecf_table
StaticStores edu ecf table data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(7) | NO |
| name | varchar(50) | NO |
| varchar(50) | NO | |
| subject | varchar(255) | NO |
| message | longtext | NO |
| time | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE `edu_ecf_table` ( `id` mediumint(7) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `subject` varchar(255) NOT NULL, `message` longtext NOT NULL, `time` timestamp NOT NULL, PRIMARY KEY (`id`) ) ENGINE
Safe to delete?
If you have uninstalled Edublogify Contact form, 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_edu_ecf_table`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.