wp_smack_email_log

Verified

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

CREATE TABLE Statement

CREATE TABLE `wp_smack_email_log` (\n  `id` int unsigned NOT NULL AUTO_INCREMENT,\n  `user_email` varchar(255) NOT NULL,\n  `event` varchar(255) NOT NULL,\n  `date` datetime DEFAULT '0000-00-00 00:00:00',\n  `status` varchar(255) DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci

Safe to delete?

If you have uninstalled Follow Up Emails, 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_smack_email_log`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Follow Up Emails