wp_accua_forms_submissions

Static

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
🔑afs_idBIGINT(20)NO
afs_form_idVARCHAR(77)NO
afs_post_idBIGINT(20)NO
afs_ipVARCHAR(255)NO
afs_uriTEXTNO
afs_referrerTEXTNO
afs_langVARCHAR(60)NO
afs_createdTIMESTAMPNO
afs_submittedTIMESTAMPNO
afs_statusTINYINT(1)NO
afs_anonymizedTINYINT(1)NO
afs_statsTEXTNO
afs_lead_statusTINYINT(1)NO

CREATE TABLE Statement

CREATE TABLE `wp_accua_forms_submissions` ( afs_id BIGINT(20) NOT NULL AUTO_INCREMENT, afs_form_id VARCHAR(77) NOT NULL DEFAULT '', afs_post_id BIGINT(20) NOT NULL DEFAULT 0, afs_ip VARCHAR(255) NOT NULL DEFAULT '', afs_uri TEXT NOT NULL, afs_referrer TEXT NOT NULL, afs_lang VARCHAR(60) NOT NULL DEFAULT '', afs_created TIMESTAMP NOT NULL DEFAULT 0, afs_submitted TIMESTAMP NOT NULL DEFAULT 0, afs_status TINYINT(1) NOT NULL DEFAULT 0, afs_anonymized TINYINT(1) NOT NULL DEFAULT 0, afs_stats TEXT NOT NULL, afs_lead_status TINYINT(1) NOT NULL DEFAULT 0, PRIMARY KEY (afs_id), KEY form (afs_form_id, afs_status), KEY uri (afs_uri(190)), KEY pid (afs_post_id), KEY referrer (afs_referrer(190)), KEY status (afs_status, afs_id), KEY submitted (afs_submitted), KEY lead_status (afs_lead_status, afs_status) ) $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`;

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

Other tables from Contact Forms by Cimatti