wp_delveant_used_nonces

Static

Stores delveant used nonces data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
nonce_hashVARCHAR(64)NO
form_idBIGINT(20) UNSIGNEDNO
used_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_delveant_used_nonces ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, nonce_hash VARCHAR(64) NOT NULL, form_id BIGINT(20) UNSIGNED NOT NULL, used_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY nonce_hash (nonce_hash), KEY used_at (used_at) ) $charset_collate;" );

Safe to delete?

If you have uninstalled Delveant Form Suite, 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_delveant_used_nonces`;

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

Other tables from Delveant Form Suite