wp_kcaptcha_setting
StaticStores kcaptcha setting data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| login_form | tinyint(4) | NO |
| register_form | tinyint(4) | NO |
| lost_password_form | tinyint(4) | YES |
| comments_form | tinyint(4) | NO |
| hide_register | tinyint(4) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_kcaptcha_setting` ( `id` int(11) NOT NULL AUTO_INCREMENT, `login_form` tinyint(4) NOT NULL DEFAULT '1', `register_form` tinyint(4) NOT NULL DEFAULT '1', `lost_password_form` tinyint(4) DEFAULT '1', `comments_form` tinyint(4) NOT NULL DEFAULT '1', `hide_register` tinyint(4) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE
Safe to delete?
If you have uninstalled Kcaptcha, 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_kcaptcha_setting`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.