wp_instarank_changes
StaticStores instarank changes data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| post_id | bigint(20) unsigned | NO |
| change_type | varchar(50) | NO |
| field_name | varchar(100) | YES |
| old_value | longtext | YES |
| new_value | longtext | YES |
| status | varchar(20) | YES |
| applied_at | datetime | YES |
| rolled_back_at | datetime | YES |
| metadata | longtext | YES |
| created_at | datetime | NO |
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