wp_iavotes

Static

Stores iavotes data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
post_idint(11)NO
uservarchar(250)NO
typeint(11)NO
timestamptimestampNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_iavotes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `post_id` int(11) NOT NULL, `user` varchar(250) NOT NULL, `type` int(11) NOT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE

Safe to delete?

If you have uninstalled IaVote, 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_iavotes`;

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