wp_accua_forms_submissions_notes
StaticStores form definitions and related configuration.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| afsn_sub_id | BIGINT(20) | NO |
| afsn_date | TIMESTAMP | NO |
| afsn_text | TEXT | NO |
| afsn_user | VARCHAR(100) | NO |
CREATE TABLE Statement
CREATE TABLE `wp_accua_forms_submissions_notes` ( afsn_sub_id BIGINT(20) NOT NULL, afsn_date TIMESTAMP NOT NULL DEFAULT 0, afsn_text TEXT NOT NULL, afsn_user VARCHAR(100) NOT NULL DEFAULT '', PRIMARY KEY (afsn_sub_id, afsn_date), KEY afsn_sub_id (afsn_sub_id) ) $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_notes`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Contact Forms by Cimatti