wp_hrp_settings
StaticStores hrp settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) UNSIGNED | NO |
| setting_key | varchar(190) | YES |
| setting_value | text | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_hrp_settings`( ID bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, setting_key varchar(190) DEFAULT NULL, setting_value text DEFAULT NULL, PRIMARY KEY (ID), KEY setting_key (setting_key), UNIQUE (setting_key) ) ENGINE
Safe to delete?
If you have uninstalled HR Press Lite, 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_hrp_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from HR Press Lite