wp_jetpack_waf_blocklog

Static

Stores jetpack waf blocklog data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑log_idBIGINT UNSIGNEDNO
timestampdatetimeNO
rule_idBIGINTNO
reasonlongtextNO

CREATE TABLE Statement

CREATE TABLE wp_jetpack_waf_blocklog ( log_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, timestamp datetime NOT NULL, rule_id BIGINT NOT NULL, reason longtext NOT NULL, PRIMARY KEY (log_id), KEY timestamp (timestamp) ) "; dbDelta( $sql );

Safe to delete?

If you have uninstalled Jetpack – WP Security, Backup, Speed, & Growth, 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_jetpack_waf_blocklog`;

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

Other tables from Jetpack – WP Security, Backup, Speed, & Growth