wp_geocodes

Static

Stores geocodes data created by this plugin.

Column Definitions

ColumnTypeNullable
addressvarchar(255)NO
lonfloatYES
latfloatYES

CREATE TABLE Statement

CREATE TABLE GEOCODES ( address varchar(255) NOT NULL default '', lon float default NULL, lat float default NULL, PRIMARY KEY (address) );

Safe to delete?

If you have uninstalled FidElìt – Software CRM per la fidelizzazione della clientela, 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_geocodes`;

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