wp_delveant_rate_limits

Static

Stores delveant rate limits data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
identifierVARCHAR(200)NO
hitsINT(11)NO
window_startDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_delveant_rate_limits ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, identifier VARCHAR(200) NOT NULL, hits INT(11) NOT NULL DEFAULT 1, window_start DATETIME NOT NULL, PRIMARY KEY (id), UNIQUE KEY identifier (identifier), KEY window_start (window_start) ) $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_rate_limits`;

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

Other tables from Delveant Form Suite