wp_gravatars

Static

Stores gravatars data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
emailVARCHAR(64)NO
urlmediumtextNO
timeintNO

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.