wp_index_now_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑log_id | bigint(20) UNSIGNED | NO |
| created_at | datetime | NO |
| level | enum('emergency','alert','critical','error','warning','notice','info','debug') | NO |
| search_engine | enum('index-now','yandex-index-now','yandex-webmaster','bing-index-now','bing-webmaster','site','google-webmaster','seznam-index-now','naver-index-now') | NO |
| direction | enum('incoming','outgoing','internal') | NO |
| status_code | INT(11) unsigned | NO |
| message | text | NO |
CREATE TABLE Statement
CREATE TABLE wp_index_now_log ( log_id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, created_at datetime NOT NULL DEFAULT '0000-00-00 00:00:00', level enum('emergency','alert','critical','error','warning','notice','info','debug') NOT NULL DEFAULT 'debug', search_engine enum('index-now','yandex-index-now','yandex-webmaster','bing-index-now','bing-webmaster','site','google-webmaster','seznam-index-now','naver-index-now') NOT NULL DEFAULT 'site', direction enum('incoming','outgoing','internal') NOT NULL DEFAULT 'incoming', status_code INT(11) unsigned NOT NULL, message text NOT NULL, PRIMARY KEY (log_id) ) {$charset_collate};"; dbDelta($sql);Safe to delete?
If you have uninstalled CrawlWP SEO – Instant Search Engine Indexing & SEO Performance Monitor, 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_index_now_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CrawlWP SEO – Instant Search Engine Indexing & SEO Performance Monitor