wp_ts_redirects
StaticStores ts redirects data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) | YES |
| title | TEXT | YES |
| section | TEXT | YES |
| new_link | TEXT | YES |
| old_link | TEXT | YES |
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.