wp_ehssl_resource_scan_tbl

Static

Stores ehssl resource scan tbl data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
source_tablevarchar(100)NO
source_uidvarchar(255)NO
cols_maptextYES
meta_maptextYES
fixedboolYES

CREATE TABLE Statement

CREATE TABLE wp_ehssl_resource_scan_tbl ( id bigint(20) unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT, source_table varchar(100) NOT NULL, source_uid varchar(255) NOT NULL, cols_map text DEFAULT NULL, meta_map text DEFAULT NULL, fixed bool DEFAULT false ) {$charset_collate};"; dbDelta($sql);

Safe to delete?

If you have uninstalled Easy HTTPS Redirection (SSL), 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_ehssl_resource_scan_tbl`;

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