wp_kcaptcha_setting

Static

Stores kcaptcha setting data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
login_formtinyint(4)NO
register_formtinyint(4)NO
lost_password_formtinyint(4)YES
comments_formtinyint(4)NO
hide_registertinyint(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.