wp_amitinen_tracker

Static

Stores amitinen tracker data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
urlvarchar(500)NO
post_idbigint(20)YES
post_typevarchar(50)YES
titlevarchar(500)YES
priorityintYES
submitted_atdatetimeYES
statusvarchar(20)YES
notestextYES

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