wp_hrp_holidays
StaticStores hrp holidays data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) UNSIGNED | NO |
| title | varchar(190) | YES |
| start_date | date | YES |
| end_date | date | YES |
| description | text | YES |
| added_by_user_id | bigint(20) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_hrp_holidays`( ID bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, title varchar(190) DEFAULT NULL, `start_date` date NULL DEFAULT NULL, `end_date` date NULL DEFAULT NULL, `description` text DEFAULT NULL, `added_by_user_id` bigint(20) DEFAULT NULL, PRIMARY KEY (ID) ) 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_holidays`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from HR Press Lite