wp_ahm_events
StaticStores ahm events data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) UNSIGNED | NO |
| page_id | int(8) UNSIGNED | NO |
| page_id2 | int(8) UNSIGNED | NO |
| event | tinyint(3) UNSIGNED | NO |
| x | mediumint(5) UNSIGNED | NO |
| y | mediumint(7) UNSIGNED | NO |
| width | mediumint(5) UNSIGNED | NO |
| height | mediumint(7) UNSIGNED | NO |
| insert_at | datetime | NO |
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