wp_ts_redirects

Static

Stores ts redirects data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20)YES
titleTEXTYES
sectionTEXTYES
new_linkTEXTYES
old_linkTEXTYES

CREATE TABLE Statement

CREATE TABLE wp_ts_redirects (id BIGINT(20) PRIMARY KEY AUTO_INCREMENT,title TEXT,section TEXT, new_link TEXT, old_link TEXT)");

Safe to delete?

If you have uninstalled 301 Redirects & 404 Error Log, 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_ts_redirects`;

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