wp_lecf_submissions
StaticStores form submissions and user-entered data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| form_id | bigint(20) | NO |
| data | longtext | NO |
| ip_address | varchar(45) | NO |
| user_agent | text | NO |
| status | varchar(20) | NO |
| created_at | datetime | NO |
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