wp_smack_followup_mail

Verified

Stores smack followup mail data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_smack_followup_mail` (\n  `id` int unsigned NOT NULL AUTO_INCREMENT,\n  `username` varchar(255) NOT NULL,\n  `event` varchar(255) NOT NULL,\n  `user_email` varchar(255) NOT NULL,\n  `template_id` varchar(255) NOT NULL,\n  `scheduled_date` datetime DEFAULT '0000-00-00 00:00:00',\n  `orderid` varchar(255) DEFAULT NULL,\n  `cartid` varchar(255) DEFAULT NULL,\n  `product_id` int DEFAULT NULL,\n  `user_id` int DEFAULT NULL,\n  `status` int DEFAULT '0',\n  `form_id` int DEFAULT NULL,\n  `entry_id` int 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_followup_mail`;

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

Other tables from Follow Up Emails