wp_awb_redirects

Static

Stores awb redirects data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
sourceVARCHAR(512)NO
targetVARCHAR(512)NO
typeSMALLINTNO
hitsBIGINT UNSIGNEDNO
created_atDATETIMENO

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