wp_ehssl_resource_scan_tbl
StaticStores ehssl resource scan tbl data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| source_table | varchar(100) | NO |
| source_uid | varchar(255) | NO |
| cols_map | text | YES |
| meta_map | text | YES |
| fixed | bool | YES |
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.