wp_omnisend_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| date | datetime | YES |
| type | varchar(10) | YES |
| endpoint | varchar(15) | YES |
| url | varchar(100) | YES |
| message | longtext | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_omnisend_logs ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `date` datetime, `type` varchar(10) CHARACTER SET utf8, `endpoint` varchar(15) CHARACTER SET utf8, `url` varchar(100) CHARACTER SET utf8, `message` longtext CHARACTER SET utf8, PRIMARY KEY (`id`) )$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_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Marketing for WooCommerce by Omnisend