/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `wplc_wptc_activity_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wplc_wptc_activity_log` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log_data` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` tinyint(1) NOT NULL DEFAULT '0',
  `parent_id` bigint(20) NOT NULL,
  `is_reported` tinyint(1) NOT NULL DEFAULT '0',
  `report_id` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action_id` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `show_user` enum('1','0') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`),
  KEY `action_id` (`action_id`(191)),
  KEY `show_user` (`show_user`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

INSERT INTO `wplc_wptc_activity_log` VALUES (1,'2023-07-22 13:18:31','others','a:4:{s:6:\"action\";s:6:\"others\";s:8:\"log_time\";i:1690049911;s:3:\"msg\";s:27:\"WP Time Capsule Deactivated\";s:4:\"data\";N;}',0,0,0,'','1690049911','1');

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

