wp_awb_broken_links

Static

Stores awb broken links data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
post_idBIGINT UNSIGNEDNO
urlVARCHAR(2048)NO
status_codeSMALLINTNO
last_checkedDATETIMENO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_awb_broken_links ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, post_id BIGINT UNSIGNED NOT NULL, url VARCHAR(2048) NOT NULL, status_code SMALLINT NOT NULL DEFAULT 0, last_checked DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY post_id (post_id) ) {$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_broken_links`;

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

Other tables from CitedSEO