wp_formello_submissions_meta
StaticStores additional metadata (key-value pairs) for formello submissions records.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| form_id | INT UNSIGNED | NO |
| submission_id | INT UNSIGNED | NO |
| field_name | VARCHAR(255) | NO |
| field_value | TEXT | YES |
| FOREIGN | KEY | YES |
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