wp_icegram_mailer_email_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) UNSIGNED | NO |
| tracking_id | VARCHAR(255) | NO |
| to | text | NO |
| subject | text | YES |
| headers | text | YES |
| body | longtext | YES |
| attachments | varchar(255) | YES |
| status | varchar(255) | YES |
| error | varchar(255) | YES |
| created_at | int(11) UNSIGNED | NO |
| updated_at | int(11) UNSIGNED | NO |
| opened_at | int(11) UNSIGNED | YES |
CREATE TABLE Statement
CREATE TABLE `wp_icegram_mailer_email_logs` ( `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `tracking_id` VARCHAR(255) NOT NULL, `to` text NOT NULL, `subject` text DEFAULT NULL, `headers` text DEFAULT NULL, `body` longtext DEFAULT NULL, `attachments` varchar(255) DEFAULT NULL, `status` varchar(255), `error` varchar(255), `created_at` int(11) UNSIGNED NOT NULL DEFAULT 0, `updated_at` int(11) UNSIGNED NOT NULL DEFAULT 0, `opened_at` int(11) UNSIGNED DEFAULT NULL DEFAULT 0, PRIMARY KEY (id) ) $collate; "; return $tables; } /** * Collect multiple version schema * * @param string $collate * * @return string * * @since 4.2.0 */ private static function get_schema( $collate = '' ) { $tables = self::get_email_logs_table_schema( $collate );Safe to delete?
If you have uninstalled Icegram Mailer – Reliable Email Deliverability, No-code SMTP Replacement & Email logs, 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_icegram_mailer_email_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.