wp_formello_submissions

Static

Stores form submissions and user-entered data.

Column Definitions

ColumnTypeNullable
🔑idINT UNSIGNEDNO
form_idINT UNSIGNEDNO
dataJSONNO
is_newBOOLEANYES
starredBOOLEANYES
user_agentTEXTYES
ip_addressVARCHAR(255)YES
referer_urlVARCHAR(255)YES
submitted_atTIMESTAMPNO
logTEXTYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_formello_submissions ( `id` INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, `form_id` INT UNSIGNED NOT NULL, `data` JSON NOT NULL, `is_new` BOOLEAN DEFAULT true, `starred` BOOLEAN DEFAULT false, `user_agent` TEXT NULL, `ip_address` VARCHAR(255) NULL, `referer_url` VARCHAR(255) NULL, `submitted_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `log` TEXT NULL ) ENGINE

Safe to delete?

If you have uninstalled Contact form builder for Gutenberg – Formello, 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_formello_submissions`;

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

Other tables from Contact form builder for Gutenberg – Formello