wp_accua_forms_submissions_values
StaticStores form definitions and related configuration.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| afsv_sub_id | BIGINT(20) | NO |
| afsv_field_id | VARCHAR(77) | NO |
| afsv_type | varchar(255) | NO |
| afsv_value | TEXT | NO |
CREATE TABLE Statement
CREATE TABLE `wp_accua_forms_submissions_values` ( afsv_sub_id BIGINT(20) NOT NULL, afsv_field_id VARCHAR(77) NOT NULL, afsv_type varchar(255) NOT NULL DEFAULT '', afsv_value TEXT NOT NULL, PRIMARY KEY (afsv_sub_id, afsv_field_id), KEY value_index (afsv_field_id(77), afsv_value(114)) ) $charset_collate;"; dbDelta($sql);
Safe to delete?
If you have uninstalled Contact Forms by Cimatti, 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_accua_forms_submissions_values`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Contact Forms by Cimatti