wp_dreamcore_monitor_useragents
StaticStores dreamcore monitor useragents data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| user_agent | VARCHAR(500) | NO |
| ip_address | VARCHAR(45) | NO |
| page_url | VARCHAR(500) | NO |
| referer | VARCHAR(500) | YES |
| category | VARCHAR(50) | NO |
| browser | VARCHAR(100) | YES |
| os | VARCHAR(100) | YES |
| device_type | VARCHAR(50) | YES |
| visited_at | DATETIME | YES |
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