wp_formello_submissions_meta

Static

Stores additional metadata (key-value pairs) for formello submissions records.

Column Definitions

ColumnTypeNullable
🔑idINT UNSIGNEDNO
form_idINT UNSIGNEDNO
submission_idINT UNSIGNEDNO
field_nameVARCHAR(255)NO
field_valueTEXTYES
FOREIGNKEYYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_formello_submissions_meta ( `id` INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, `form_id` INT UNSIGNED NOT NULL, `submission_id` INT UNSIGNED NOT NULL, `field_name` VARCHAR(255) NOT NULL, `field_value` TEXT NULL, FOREIGN KEY (submission_id) REFERENCES wp_formello_submissions(id) ON DELETE CASCADE ) 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_meta`;

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

Other tables from Contact form builder for Gutenberg – Formello