wp_bearmor_uptime_history

Static

Stores bearmor uptime history data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
start_timeDATETIMENO
end_timeDATETIMEYES
duration_minutesINTYES
statusVARCHAR(50)YES
synced_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_bearmor_uptime_history ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, start_time DATETIME NOT NULL, end_time DATETIME, duration_minutes INT, status VARCHAR(50) DEFAULT 'open', synced_at DATETIME NOT NULL, UNIQUE KEY uniq_start_time (start_time), 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_history`;

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

Other tables from Bearmor Security