wp_dseop_redirects_log

Static

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

CREATE TABLE Statement

CREATE TABLE `wp_dseop_redirects_log` (\n  `id` mediumint NOT NULL AUTO_INCREMENT,\n  `postid` mediumint NOT NULL,\n  `post_type` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `source` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `matchtype` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `destination` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `destination_post_id` mediumint DEFAULT NULL,\n  `destination_post_type` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `status_code` mediumint NOT NULL,\n  `status` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `postid_index` (`postid`),\n  KEY `status_code_index` (`status_code`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled DefiniteSEO – AI SEO Plugin to Boost SEO Rankings, 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_dseop_redirects_log`;

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