wp_dusky_analytics

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
active_modetinyint(1)NO
activationbigint(20)NO
deactivationbigint(20)NO
viewbigint(20)NO
dark_viewbigint(20)NO
dateTIMESTAMPNO

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.