wp_ks49_customer
StaticStores ks49 customer data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(50) | NO |
| name | varchar(100) | YES |
| varchar(100) | YES | |
| subject | varchar(200) | YES |
| message | varchar(1000) | YES |
| budget | int(50) | YES |
| completion | date | YES |
| status | int(10) | YES |
| employee | varchar(300) | YES |
| givenby | varchar(100) | YES |
| project | varchar(200) | YES |
CREATE TABLE Statement
CREATE TABLE `wp_ks49_customer` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `subject` varchar(200) DEFAULT NULL, `message` varchar(1000) DEFAULT NULL, `budget` int(50) DEFAULT NULL, `completion` date DEFAULT NULL, `status` int(10) DEFAULT NULL, `employee` varchar(300) DEFAULT NULL, `givenby` varchar(100) DEFAULT NULL, `project` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `unique_customer` (`email`,`subject`) ) 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_customer`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from KickStart Management