wp_ahm_pages
StaticStores ahm pages data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(8) UNSIGNED | NO |
| url | text | NO |
| url2 | text | NO |
| title | text | NO |
| insert_at | datetime | NO |
| update_at | datetime | NO |
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