wp_cf_contact

Static

Stores cf contact data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(10) unsignedNO
nameVARCHAR( 60 )NO
emailVARCHAR( 60 )NO
mobVARCHAR( 60 )NO
msgVARCHAR( 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.