wp_contacts_meta
StaticStores additional metadata (key-value pairs) for contacts records.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| contacts_meta_id | BIGINT | NO |
| contacts_meta_key | VARCHAR(255) | NO |
| contacts_meta_value | LONGTEXT | NO |
| contacts_meta_date | DATETIME | NO |
| contact_id | BIGINT | NO |
CREATE TABLE Statement
CREATE TABLE `contacts_meta` ( `contacts_meta_id` BIGINT NOT NULL , `contacts_meta_key` VARCHAR(255) NOT NULL , `contacts_meta_value` LONGTEXT NOT NULL , `contacts_meta_date` DATETIME NOT NULL , `contact_id` BIGINT NOT NULL , PRIMARY KEY (`contacts_meta_id`), KEY `fkIdx_143` (`contact_id`), CONSTRAINT `contacts_to_meta` FOREIGN KEY `fkIdx_143` (`contact_id`) REFERENCES `contacts` (`contact_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_contacts_meta`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Reminders