wp_customers

Static

Stores customers data created by this plugin.

Column Definitions

ColumnTypeNullable
customer_idBIGINTNO
nameVARCHAR(255)NO
second_nameVARCHAR(255)NO
prefixVARCHAR(25)NO
emailVARCHAR(255)NO
phoneVARCHAR(50)NO
countryVARCHAR(255)NO
cityVARCHAR(255)NO
adressTEXTNO

CREATE TABLE Statement

CREATE TABLE `customers` ( `customer_id` BIGINT NOT NULL , `name` VARCHAR(255) NOT NULL , `second_name` VARCHAR(255) NOT NULL , `prefix` VARCHAR(25) NOT NULL , `email` VARCHAR(255) NOT NULL , `phone` VARCHAR(50) NOT NULL , `country` VARCHAR(255) NOT NULL , `city` VARCHAR(255) NOT NULL , `adress` TEXT NOT NULL , PRIMARY KEY (`customer_id`) );

Safe to delete?

If you have uninstalled Email Reminders, 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_customers`;

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

Other tables from Email Reminders