wp_formello_submissions
StaticStores form submissions and user-entered data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| form_id | INT UNSIGNED | NO |
| data | JSON | NO |
| is_new | BOOLEAN | YES |
| starred | BOOLEAN | YES |
| user_agent | TEXT | YES |
| ip_address | VARCHAR(255) | YES |
| referer_url | VARCHAR(255) | YES |
| submitted_at | TIMESTAMP | NO |
| log | TEXT | YES |
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