wp_actt_user_sessions

Verified

Stores session data for tracking user or visitor state.

CREATE TABLE Statement

CREATE TABLE `wp_actt_user_sessions` (\n  `iduser_sessions` int NOT NULL AUTO_INCREMENT,\n  `time_start` datetime DEFAULT NULL,\n  `time_end` datetime DEFAULT NULL,\n  `time_sec_total` int DEFAULT NULL,\n  `user_id` int DEFAULT NULL,\n  `user_info` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,\n  `ip` varchar(160) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,\n  `is_visit_end` tinyint(1) DEFAULT NULL,\n  `other_data` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,\n  PRIMARY KEY (`iduser_sessions`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled WP Sessions Time Monitoring Full Automatic, 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_actt_user_sessions`;

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

Other tables from WP Sessions Time Monitoring Full Automatic