wp_amitinen_log

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
urlvarchar(500)NO
enginevarchar(80)NO
statusvarchar(30)YES
responsetextYES
created_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_amitinen_log ( id bigint(20) NOT NULL AUTO_INCREMENT, url varchar(500) NOT NULL, engine varchar(80) NOT NULL, status varchar(30) DEFAULT 'submitted', response text DEFAULT '', created_at datetime DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) $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_log`;

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

Other tables from Amit Indexing Engine