wp_bearmor_uptime_pings

Static

Stores bearmor uptime pings data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
statusVARCHAR(10)NO
response_timeINTNO
pinged_atDATETIMENO
synced_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_bearmor_uptime_pings ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, status VARCHAR(10) NOT NULL, response_time INT NOT NULL, pinged_at DATETIME NOT NULL, synced_at DATETIME NOT NULL, KEY idx_pinged_at (pinged_at), KEY idx_status (status) ) $charset_collate;"; dbDelta( $sql );

Safe to delete?

If you have uninstalled Bearmor Security, 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_bearmor_uptime_pings`;

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

Other tables from Bearmor Security