wp_ks49_customer

Static

Stores ks49 customer data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(50)NO
namevarchar(100)YES
emailvarchar(100)YES
subjectvarchar(200)YES
messagevarchar(1000)YES
budgetint(50)YES
completiondateYES
statusint(10)YES
employeevarchar(300)YES
givenbyvarchar(100)YES
projectvarchar(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