wp_customers_meta

Static

Stores additional metadata (key-value pairs) for customers records.

Column Definitions

ColumnTypeNullable
customers_meta_idBIGINTNO
customers_meta_keyVARCHAR(255)NO
customers_meta_valueLONGTEXTNO
customers_meta_dateDATETIMENO
customer_idBIGINTNO

CREATE TABLE Statement

CREATE TABLE `customers_meta` ( `customers_meta_id` BIGINT NOT NULL , `customers_meta_key` VARCHAR(255) NOT NULL , `customers_meta_value` LONGTEXT NOT NULL , `customers_meta_date` DATETIME NOT NULL , `customer_id` BIGINT NOT NULL , PRIMARY KEY (`customers_meta_id`), KEY `fkIdx_151` (`customer_id`), CONSTRAINT `customers_to_meta` FOREIGN KEY `fkIdx_151` (`customer_id`) REFERENCES `customers` (`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_meta`;

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

Other tables from Email Reminders