wp_docubot_ai_secureweb_embeddings

Static

Stores docubot ai secureweb embeddings data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
filenameVARCHAR(255)NO
contentLONGTEXTNO
embeddingLONGTEXTNO

CREATE TABLE Statement

CREATE TABLE wp_docubot_ai_secureweb_embeddings ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, filename VARCHAR(255) NOT NULL DEFAULT '', content LONGTEXT NOT NULL, embedding LONGTEXT NOT NULL, PRIMARY KEY (id), KEY filename (filename(191)) ) {$charset};"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );

Safe to delete?

If you have uninstalled DocuBot AI by secureweb, 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_docubot_ai_secureweb_embeddings`;

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