wp_lazy_captcha

Static

Stores lazy captcha data created by this plugin.

Column Definitions

ColumnTypeNullable
nidvarchar(32)NO
taskvarchar(12)NO
resultvarchar(3)NO
chtimetimestampNO

CREATE TABLE Statement

create table wp_lazy_captcha ( nid varchar(32) NOT NULL, task varchar(12) NOT NULL, result varchar(3) NOT NULL, chtime timestamp NOT NULL, primary key(nid) )" ) );

Safe to delete?

If you have uninstalled LazyCaptcha, 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_lazy_captcha`;

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