wp_bearmor_uptime_history
StaticStores bearmor uptime history data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| start_time | DATETIME | NO |
| end_time | DATETIME | YES |
| duration_minutes | INT | YES |
| status | VARCHAR(50) | YES |
| synced_at | DATETIME | NO |
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