wp_icegram_mailer_email_logs

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDNO
tracking_idVARCHAR(255)NO
totextNO
subjecttextYES
headerstextYES
bodylongtextYES
attachmentsvarchar(255)YES
statusvarchar(255)YES
errorvarchar(255)YES
created_atint(11) UNSIGNEDNO
updated_atint(11) UNSIGNEDNO
opened_atint(11) UNSIGNEDYES

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.