wp_awb_redirects
StaticStores awb redirects data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| source | VARCHAR(512) | NO |
| target | VARCHAR(512) | NO |
| type | SMALLINT | NO |
| hits | BIGINT UNSIGNED | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_awb_redirects ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, source VARCHAR(512) NOT NULL, target VARCHAR(512) NOT NULL, type SMALLINT NOT NULL DEFAULT 301, hits BIGINT UNSIGNED NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY source (source(255)) ) {$charset};" );Safe to delete?
If you have uninstalled CitedSEO, 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_awb_redirects`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CitedSEO