wp_edu_ecf_table

Static

Stores edu ecf table data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idmediumint(7)NO
namevarchar(50)NO
emailvarchar(50)NO
subjectvarchar(255)NO
messagelongtextNO
timetimestampNO

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.