wp_gravatars
StaticStores gravatars data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| VARCHAR(64) | NO | |
| url | mediumtext | NO |
| time | int | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_gravatars` ( `id` int(11) unsigned NOT NULL auto_increment, `email` VARCHAR(64) NOT NULL UNIQUE, `url` mediumtext NOT NULL, `time` int NOT NULL, PRIMARY KEY (`id`) )");
Safe to delete?
If you have uninstalled FV Gravatar Cache, 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_gravatars`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.