wp_bearmor_uptime_daily
StaticStores bearmor uptime daily data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑day | DATE | NO |
| total_pings | INT UNSIGNED | NO |
| up_pings | INT UNSIGNED | NO |
| uptime_percent | DECIMAL(5,2) | NO |
| avg_response_time | INT UNSIGNED | NO |
| aggregated_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_bearmor_uptime_daily ( day DATE NOT NULL PRIMARY KEY, total_pings INT UNSIGNED NOT NULL, up_pings INT UNSIGNED NOT NULL, uptime_percent DECIMAL(5,2) NOT NULL, avg_response_time INT UNSIGNED NOT NULL, aggregated_at DATETIME NOT NULL ) $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_daily`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bearmor Security