wp_lunexia_vulnerabilities

Static

Stores lunexia vulnerabilities data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
product_typevarchar(50)NO
product_namevarchar(191)NO
vulnerable_version_fromvarchar(50)YES
vulnerable_version_tovarchar(50)YES
fixed_versionvarchar(50)YES
severityvarchar(20)YES
cve_idvarchar(50)YES
cvss_scoredecimal(3,1)YES
descriptiontextYES
reference_urltextYES
discovered_datedatetimeYES
published_datedatetimeYES
is_exploitedtinyint(1)YES
sourcevarchar(191)YES
created_atdatetimeNO
updated_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_lunexia_vulnerabilities ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, product_type varchar(50) NOT NULL, product_name varchar(191) NOT NULL, vulnerable_version_from varchar(50), vulnerable_version_to varchar(50), fixed_version varchar(50), severity varchar(20), cve_id varchar(50), cvss_score decimal(3,1), description text, reference_url text, discovered_date datetime, published_date datetime, is_exploited tinyint(1) DEFAULT 0, source varchar(191), created_at datetime NOT NULL, updated_at datetime, PRIMARY KEY (id), KEY product_type (product_type), KEY product_name (product_name), KEY severity (severity), KEY cve_id (cve_id) ) {$charset_collate};"; dbDelta( $sql );

Safe to delete?

If you have uninstalled Lunexia .htaccess Shield, 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_lunexia_vulnerabilities`;

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

Other tables from Lunexia .htaccess Shield