wp_bearmor_ai_analyses

Static

Stores bearmor ai analyses data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
summary_dataLONGTEXTNO
ai_promptLONGTEXTNO
ai_responseLONGTEXTNO
color_ratingENUM('green', 'gray', 'yellow', 'red')YES
model_usedVARCHAR(50)NO
tokens_usedINTNO
created_atDATETIMENO

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