wp_ahm_pages

Static

Stores ahm pages data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(8) UNSIGNEDNO
urltextNO
url2textNO
titletextNO
insert_atdatetimeNO
update_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE wp_ahm_pages ( id int(8) UNSIGNED NOT NULL AUTO_INCREMENT, url text NOT NULL, url2 text NOT NULL, title text NOT NULL, insert_at datetime NOT NULL, update_at datetime NOT NULL, PRIMARY KEY (id), KEY url (url({$max_index_length})), KEY url2 (url2({$max_index_length})) ) {$charset_collate}" );

Safe to delete?

If you have uninstalled Aurora Heatmap, 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_ahm_pages`;

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

Other tables from Aurora Heatmap