wp_actt_visited_pages

Verified

Stores actt visited pages data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_actt_visited_pages` (\n  `idvisited_pages` int NOT NULL AUTO_INCREMENT,\n  `request_uri` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,\n  `title` varchar(160) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,\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 (`idvisited_pages`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci COMMENT='Activity Time Plugin'

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_visited_pages`;

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

Other tables from WP Sessions Time Monitoring Full Automatic