wp_omnisend_contact_cache
StaticA cache table that stores temporary computed or fetched data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| varchar(200) | YES | |
| contact_id | varchar(100) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_omnisend_contact_cache ( `email` varchar(200) CHARACTER SET utf8, `contact_id` varchar(100) CHARACTER SET utf8, PRIMARY KEY (`email`) )$charset_collate;"; dbDelta( $sql );
Safe to delete?
If you have uninstalled Email Marketing for WooCommerce by Omnisend, 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_omnisend_contact_cache`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Marketing for WooCommerce by Omnisend