wp_dimme_googlemaps

Static

Stores dimme googlemaps data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDbigint(20) unsignedNO
post_idbigint(20) unsignedNO
post_typevarchar(20)YES
item_datedatetimeNO
latitudefloat(12,7)YES
longtitudefloat(12,7)YES

CREATE TABLE Statement

CREATE TABLE wp_dimme_googlemaps ( ID bigint(20) unsigned NOT NULL AUTO_INCREMENT, post_id bigint(20) unsigned NOT NULL DEFAULT '0', post_type varchar(20) DEFAULT 'post', item_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00', latitude float(12,7) DEFAULT '0.0000000', longtitude float(12,7) DEFAULT '0.0000000', PRIMARY KEY (ID) )"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php');

Safe to delete?

If you have uninstalled Dimme Googlemap, 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_dimme_googlemaps`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.