wp_geocodes
StaticStores geocodes data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| address | varchar(255) | NO |
| lon | float | YES |
| lat | float | YES |
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.