wp_ks49_employee
StaticStores ks49 employee data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(50) | NO |
| employee | varchar(50) | YES |
| givenby | varchar(100) | YES |
| project | varchar(100) | YES |
| task | varchar(200) | YES |
| taskstatus | int(50) | YES |
| taskdate | date | YES |
| compdate | date | YES |
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