wp_crawlwp_log

Static

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

Column Definitions

ColumnTypeNullable
🔑log_idbigint(20)NO
created_atdatetimeNO
levelvarchar(255)NO
search_enginevarchar(255)NO
directionvarchar(255)NO
status_codeINT(11)NO
messagetextNO

CREATE TABLE Statement

CREATE TABLE wp_crawlwp_log ( log_id bigint(20) NOT NULL AUTO_INCREMENT, created_at datetime NOT NULL DEFAULT '0000-00-00 00:00:00', level varchar(255) NOT NULL DEFAULT 'debug', search_engine varchar(255) NOT NULL DEFAULT 'site', direction varchar(255) NOT NULL DEFAULT 'incoming', status_code INT(11) NOT NULL DEFAULT 0, 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_crawlwp_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