wp_contactformkeys
StaticStores contactformkeys data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| LogId | integer | YES |
| siteKey | TEXT | NO |
| secretKey | TEXT | NO |
| emailAddress | TEXT | NO |
| emailPassword | TEXT | NO |
| hostName | TEXT | NO |
| portNumber | TEXT | NO |
| contactName | TEXT | NO |
CREATE TABLE Statement
CREATE TABLE contactFormKeys ( LogId integer UNIQUE default(1), siteKey TEXT NOT NULL, secretKey TEXT NOT NULL, emailAddress TEXT NOT NULL, emailPassword TEXT NOT NULL, hostName TEXT NOT NULL, portNumber TEXT NOT NULL, contactName TEXT NOT NULL, Constraint CHK_Logging_singlerow CHECK (LogId = 1) );
Safe to delete?
If you have uninstalled Captcha 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_contactformkeys`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.