wp_dreamcore_monitor_useragents

Static

Stores dreamcore monitor useragents data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
user_agentVARCHAR(500)NO
ip_addressVARCHAR(45)NO
page_urlVARCHAR(500)NO
refererVARCHAR(500)YES
categoryVARCHAR(50)NO
browserVARCHAR(100)YES
osVARCHAR(100)YES
device_typeVARCHAR(50)YES
visited_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE wp_dreamcore_monitor_useragents ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_agent VARCHAR(500) NOT NULL, ip_address VARCHAR(45) NOT NULL, page_url VARCHAR(500) NOT NULL, referer VARCHAR(500) NULL, category VARCHAR(50) NOT NULL, browser VARCHAR(100) NULL, os VARCHAR(100) NULL, device_type VARCHAR(50) NULL, visited_at DATETIME DEFAULT CURRENT_TIMESTAMP, INDEX idx_category (category), INDEX idx_visited_at (visited_at), INDEX idx_ip_address (ip_address), INDEX idx_browser (browser), INDEX idx_device_type (device_type) ) {$charset_collate}"; // Safe loading of upgrade.php with proper path handling $upgrade_file = wp_normalize_path( ABSPATH . 'wp-admin/includes/upgrade.php' );

Safe to delete?

If you have uninstalled SiteSignal, 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_dreamcore_monitor_useragents`;

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

Other tables from SiteSignal