wp_ks49_employee

Static

Stores ks49 employee data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(50)NO
employeevarchar(50)YES
givenbyvarchar(100)YES
projectvarchar(100)YES
taskvarchar(200)YES
taskstatusint(50)YES
taskdatedateYES
compdatedateYES

CREATE TABLE Statement

CREATE TABLE `wp_ks49_employee` ( `id` int(50) NOT NULL AUTO_INCREMENT, `employee` varchar(50) DEFAULT NULL, `givenby` varchar(100) DEFAULT NULL, `project` varchar(100) DEFAULT NULL, `task` varchar(200) DEFAULT NULL, `taskstatus` int(50) DEFAULT NULL, `taskdate` date DEFAULT NULL, `compdate` date DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE

Safe to delete?

If you have uninstalled KickStart Management, 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_ks49_employee`;

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

Other tables from KickStart Management