wp_actt_report

Verified

Stores actt report data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_actt_report` (\n  `idreport` int NOT NULL AUTO_INCREMENT,\n  `date` datetime DEFAULT NULL,\n  `report_name` varchar(160) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,\n  `description` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,\n  `report_email` varchar(160) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,\n  `scheduling_period` int DEFAULT NULL COMMENT 'days',\n  `format` varchar(10) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,\n  `by_user` varchar(160) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,\n  `by_ip` varchar(160) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,\n  `request_uri` varchar(160) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,\n  `date_start` datetime DEFAULT NULL,\n  `date_end` datetime DEFAULT NULL,\n  `date_sent` datetime DEFAULT NULL,\n  `other_data` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci,\n  PRIMARY KEY (`idreport`)\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_report`;

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

Other tables from WP Sessions Time Monitoring Full Automatic