wp_delveant_used_nonces
StaticStores delveant used nonces data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| nonce_hash | VARCHAR(64) | NO |
| form_id | BIGINT(20) UNSIGNED | NO |
| used_at | DATETIME | NO |
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