wp_amitinen_tracker
StaticStores amitinen tracker data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| url | varchar(500) | NO |
| post_id | bigint(20) | YES |
| post_type | varchar(50) | YES |
| title | varchar(500) | YES |
| priority | int | YES |
| submitted_at | datetime | YES |
| status | varchar(20) | YES |
| notes | text | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_amitinen_tracker ( id bigint(20) NOT NULL AUTO_INCREMENT, url varchar(500) NOT NULL, post_id bigint(20) DEFAULT 0, post_type varchar(50) DEFAULT '', title varchar(500) DEFAULT '', priority int DEFAULT 50, submitted_at datetime DEFAULT NULL, indexed tinyint(1) DEFAULT 0, status varchar(20) DEFAULT 'pending', notes text DEFAULT '', PRIMARY KEY (id), UNIQUE KEY url (url(191)) ) $charset;" );
Safe to delete?
If you have uninstalled Amit Indexing Engine, 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_amitinen_tracker`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Amit Indexing Engine