wp_history
StaticStores history data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `history` ( // `dt` datetime NOT NULL, // `lat` decimal(10,6) NOT NULL, // `lng` decimal(10,6) NOT NULL, // UNIQUE KEY `dt` (`dt`) // ) require 'class.sosumi.php'; $ssm = new Sosumi('your_username', 'your_password');Safe to delete?
If you have uninstalled DistanceFromMe, 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_history`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.