wp_group_map
StaticStores group map data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑group_map_id | INT(11) | NO |
| group_map_title | VARCHAR(255) | YES |
| group_marker | TEXT | YES |
| extensions_fields | TEXT | YES |
| group_parent | INT(11) | YES |
| group_added | TIMESTAMP | NO |
CREATE TABLE Statement
CREATE TABLE wp_group_map ( group_map_id INT(11) NOT NULL AUTO_INCREMENT, group_map_title VARCHAR(255) DEFAULT NULL, group_marker TEXT DEFAULT NULL, extensions_fields TEXT DEFAULT NULL, group_parent INT(11) DEFAULT 0, group_added TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (group_map_id) ) $charset_collate;"; } /** * Fetch and filter marker categories. * @param array $where Filter conditions. * @return array Filtered category objects. */ public function fetch( $where = [] ) { $objects = $this->get( $this->table, $where );Safe to delete?
If you have uninstalled WP Maps – Google Maps,OpenStreetMap,Mapbox,Store Locator,Listing,Directory & Filters, 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_group_map`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP Maps – Google Maps,OpenStreetMap,Mapbox,Store Locator,Listing,Directory & Filters