wp_wpag_scans

Static

Stores wpag scans data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
scan_uuidCHAR(36)NO
urlTEXTNO
statusVARCHAR(16)NO
scoreTINYINT UNSIGNEDYES
wcag_levelVARCHAR(8)NO
issues_countINT UNSIGNEDNO
raw_payloadLONGTEXTYES
created_atDATETIMENO
completed_atDATETIMEYES
scan_idBIGINT UNSIGNEDNO
rule_idVARCHAR(80)NO
impactVARCHAR(16)NO
selectorTEXTNO
htmlTEXTYES
help_urlVARCHAR(255)YES
fixedTINYINT(1)NO
fix_methodVARCHAR(40)YES
versionINT UNSIGNEDNO
languageVARCHAR(5)NO
statusVARCHAR(20)NO
pdf_urlVARCHAR(500)YES
pdf_hashCHAR(64)YES
signed_atDATETIMEYES
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_wpag_scans ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, scan_uuid CHAR(36) NOT NULL, url TEXT NOT NULL, status VARCHAR(16) NOT NULL DEFAULT 'queued', score TINYINT UNSIGNED NULL, wcag_level VARCHAR(8) NOT NULL DEFAULT 'AA', issues_count INT UNSIGNED NOT NULL DEFAULT 0, raw_payload LONGTEXT NULL, created_at DATETIME NOT NULL, completed_at DATETIME NULL, PRIMARY KEY (id), UNIQUE KEY scan_uuid (scan_uuid), KEY status (status), KEY created_at (created_at) ) $charset_collate;"; $issues = "CREATE TABLE wp_wpag_issues ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, scan_id BIGINT UNSIGNED NOT NULL, rule_id VARCHAR(80) NOT NULL, impact VARCHAR(16) NOT NULL, selector TEXT NOT NULL, html TEXT NULL, help_url VARCHAR(255) NULL, fixed TINYINT(1) NOT NULL DEFAULT 0, fix_method VARCHAR(40) NULL, PRIMARY KEY (id), KEY scan_id (scan_id), KEY impact (impact) ) $charset_collate;"; $statements = "CREATE TABLE wp_wpag_statements ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, version INT UNSIGNED NOT NULL, language VARCHAR(5) NOT NULL, status VARCHAR(20) NOT NULL, pdf_url VARCHAR(500) NULL, pdf_hash CHAR(64) NULL, signed_at DATETIME NULL, created_at DATETIME NOT NULL, PRIMARY KEY (id), KEY language (language) ) $charset_collate;"; dbDelta( $scans );

Safe to delete?

If you have uninstalled Instintia EAA Accessibility Reports, 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_wpag_scans`;

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

Other tables from Instintia EAA Accessibility Reports