wp_instarank_changes

Static

Stores instarank changes data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
post_idbigint(20) unsignedNO
change_typevarchar(50)NO
field_namevarchar(100)YES
old_valuelongtextYES
new_valuelongtextYES
statusvarchar(20)YES
applied_atdatetimeYES
rolled_back_atdatetimeYES
metadatalongtextYES
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_instarank_changes ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, post_id bigint(20) unsigned NOT NULL, change_type varchar(50) NOT NULL, field_name varchar(100) DEFAULT NULL, old_value longtext, new_value longtext, status varchar(20) DEFAULT 'pending', applied_at datetime DEFAULT NULL, rolled_back_at datetime DEFAULT NULL, metadata longtext, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY post_id (post_id), KEY status (status), KEY created_at (created_at) ) $charset_collate;"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php');

Safe to delete?

If you have uninstalled InstaRank, 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_instarank_changes`;

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

Other tables from InstaRank