wp_amitinen_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| url | varchar(500) | NO |
| engine | varchar(80) | NO |
| status | varchar(30) | YES |
| response | text | YES |
| created_at | datetime | YES |
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