wp_bearmor_ai_analyses
StaticStores bearmor ai analyses data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| summary_data | LONGTEXT | NO |
| ai_prompt | LONGTEXT | NO |
| ai_response | LONGTEXT | NO |
| color_rating | ENUM('green', 'gray', 'yellow', 'red') | YES |
| model_used | VARCHAR(50) | NO |
| tokens_used | INT | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_bearmor_ai_analyses ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, summary_data LONGTEXT NOT NULL, ai_prompt LONGTEXT NOT NULL, ai_response LONGTEXT NOT NULL, color_rating ENUM('green', 'gray', 'yellow', 'red') DEFAULT 'gray', model_used VARCHAR(50) NOT NULL, tokens_used INT NOT NULL, created_at DATETIME NOT NULL, KEY idx_created_at (created_at), KEY idx_color_rating (color_rating) ) $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_ai_analyses`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Bearmor Security