wp_map_routes

Static

Stores map routes data created by this plugin.

CREATE TABLE Statement

CREATE TABLE wp_map_routes ( route_id int(11) NOT NULL AUTO_INCREMENT, route_title varchar(255), route_stroke_color varchar(255), route_stroke_opacity varchar(255), route_stroke_weight int(11), route_travel_mode varchar(255), route_unit_system varchar(255), route_marker_draggable varchar(255), route_optimize_waypoints varchar(255), route_start_location int(11), route_end_location int(11), route_way_points text, extensions_fields text, PRIMARY KEY (route_id) ) $charset;"; } public function fetch( $where = array() ) { $routes = $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_map_routes`;

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