wp_lunexia_vulnerabilities
StaticStores lunexia vulnerabilities data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| product_type | varchar(50) | NO |
| product_name | varchar(191) | NO |
| vulnerable_version_from | varchar(50) | YES |
| vulnerable_version_to | varchar(50) | YES |
| fixed_version | varchar(50) | YES |
| severity | varchar(20) | YES |
| cve_id | varchar(50) | YES |
| cvss_score | decimal(3,1) | YES |
| description | text | YES |
| reference_url | text | YES |
| discovered_date | datetime | YES |
| published_date | datetime | YES |
| is_exploited | tinyint(1) | YES |
| source | varchar(191) | YES |
| created_at | datetime | NO |
| updated_at | datetime | YES |
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