wp_dusky_analytics
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| active_mode | tinyint(1) | NO |
| activation | bigint(20) | NO |
| deactivation | bigint(20) | NO |
| view | bigint(20) | NO |
| dark_view | bigint(20) | NO |
| date | TIMESTAMP | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_dusky_analytics( id bigint(20) NOT NULL AUTO_INCREMENT, unique_id VARCHAR(32) NOT NULL, active_mode tinyint(1) NOT NULL DEFAULT 0, activation bigint(20) NOT NULL DEFAULT 0, deactivation bigint(20) NOT NULL DEFAULT 0, view bigint(20) NOT NULL DEFAULT 0, dark_view bigint(20) NOT NULL DEFAULT 0, date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY (id) ) ENGINE
Safe to delete?
If you have uninstalled Dusky Dark Mode – Dark Mode for Gutenberg and Elementor, 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_dusky_analytics`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.