wp_group_map

Static

Stores group map data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑group_map_idINT(11)NO
group_map_titleVARCHAR(255)YES
group_markerTEXTYES
extensions_fieldsTEXTYES
group_parentINT(11)YES
group_addedTIMESTAMPNO

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