wp_iavotes
StaticStores iavotes data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| post_id | int(11) | NO |
| user | varchar(250) | NO |
| type | int(11) | NO |
| timestamp | timestamp | NO |
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.