wp_ahc_search_engines

Static

Stores ahc search engines data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑srh_idINT(3) UNSIGNEDNO
srh_nameVARCHAR(100)NO
srh_query_parameterVARCHAR(10)NO
srh_iconVARCHAR(50)YES
srh_identifierVARCHAR(50)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `ahc_search_engines` ( `srh_id` INT(3) UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY(`srh_id`), `srh_name` VARCHAR(100) NOT NULL, `srh_query_parameter` VARCHAR(10) NOT NULL, `srh_icon` VARCHAR(50), `srh_identifier` VARCHAR(50) ) DEFAULT CHARSET

Safe to delete?

If you have uninstalled Visitor Traffic Real Time Statistics, 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_ahc_search_engines`;

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

Other tables from Visitor Traffic Real Time Statistics