wp_accua_forms_submissions_values

Static

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
afsv_sub_idBIGINT(20)NO
afsv_field_idVARCHAR(77)NO
afsv_typevarchar(255)NO
afsv_valueTEXTNO

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