wp_lecf_submissions

Static

Stores form submissions and user-entered data.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
form_idbigint(20)NO
datalongtextNO
ip_addressvarchar(45)NO
user_agenttextNO
statusvarchar(20)NO
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_lecf_submissions ( id bigint(20) NOT NULL AUTO_INCREMENT, form_id bigint(20) NOT NULL DEFAULT 0, data longtext NOT NULL, ip_address varchar(45) NOT NULL DEFAULT '', user_agent text NOT NULL, status varchar(20) NOT NULL DEFAULT 'new', created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY form_id (form_id), KEY status (status) ) {$collate};" );

Safe to delete?

If you have uninstalled Easy Contact Form by LukaCodes, 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_lecf_submissions`;

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

Other tables from Easy Contact Form by LukaCodes