wp_customers
StaticStores customers data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| customer_id | BIGINT | NO |
| name | VARCHAR(255) | NO |
| second_name | VARCHAR(255) | NO |
| prefix | VARCHAR(25) | NO |
| VARCHAR(255) | NO | |
| phone | VARCHAR(50) | NO |
| country | VARCHAR(255) | NO |
| city | VARCHAR(255) | NO |
| adress | TEXT | NO |
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