wp_hrp_departments

Static

Stores hrp departments data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDbigint(20) UNSIGNEDNO
titlevarchar(200)YES
descriptiontextYES
employee_idint(11) unsignedYES
created_atdatetimeNO
updated_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_hrp_departments`( ID bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, title varchar(200) DEFAULT NULL, `description` text DEFAULT NULL, `employee_id` int(11) unsigned DEFAULT NULL, created_at datetime NOT NULL, updated_at datetime NOT 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_departments`;

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

Other tables from HR Press Lite