wp_cf_contact
StaticStores cf contact data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(10) unsigned | NO |
| name | VARCHAR( 60 ) | NO |
| VARCHAR( 60 ) | NO | |
| mob | VARCHAR( 60 ) | NO |
| msg | VARCHAR( 60 ) | NO |
CREATE TABLE Statement
CREATE TABLE wp_cf_contact ( id int(10) unsigned NOT NULL AUTO_INCREMENT, name VARCHAR( 60 ) NOT NULL, email VARCHAR( 60 ) NOT NULL, mob VARCHAR( 60 ) NOT NULL, msg VARCHAR( 60 ) NOT NULL, PRIMARY KEY (`id`) ) {$charset_collate} AUTO_INCREMENT=1"; dbDelta($sql);Safe to delete?
If you have uninstalled Contact form, 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_cf_contact`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.