wp_lazy_captcha
StaticStores lazy captcha data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| nid | varchar(32) | NO |
| task | varchar(12) | NO |
| result | varchar(3) | NO |
| chtime | timestamp | NO |
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.