wp_cf7db

Static

Stores cf7db data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
formint(11)NO
datatextNO
submitteddatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_cf7db ( id int(11) unsigned NOT NULL auto_increment, form int(11) NOT NULL, data text NOT NULL, submitted datetime NOT NULL, PRIMARY KEY (id) );

Safe to delete?

If you have uninstalled Database for CF7, 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_cf7db`;

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