wp_cf7db
StaticStores cf7db data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| form | int(11) | NO |
| data | text | NO |
| submitted | datetime | NO |
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.