wp_delveant_rate_limits
StaticStores delveant rate limits data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| identifier | VARCHAR(200) | NO |
| hits | INT(11) | NO |
| window_start | DATETIME | NO |
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