wp_ahm_events

Static

Stores ahm events data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDNO
page_idint(8) UNSIGNEDNO
page_id2int(8) UNSIGNEDNO
eventtinyint(3) UNSIGNEDNO
xmediumint(5) UNSIGNEDNO
ymediumint(7) UNSIGNEDNO
widthmediumint(5) UNSIGNEDNO
heightmediumint(7) UNSIGNEDNO
insert_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE wp_ahm_events ( id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, page_id int(8) UNSIGNED NOT NULL, page_id2 int(8) UNSIGNED NOT NULL, event tinyint(3) UNSIGNED NOT NULL, x mediumint(5) UNSIGNED NOT NULL, y mediumint(7) UNSIGNED NOT NULL, width mediumint(5) UNSIGNED NOT NULL, height mediumint(7) UNSIGNED NOT NULL, insert_at datetime NOT NULL, PRIMARY KEY (id), KEY event (event), KEY page_id2 (page_id2), KEY insert_at (insert_at) ) {$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_events`;

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

Other tables from Aurora Heatmap