+--
+-- Table structure for table `wrreportcache`
+--
+
+DROP TABLE IF EXISTS `wrreportcache`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wrreportcache` (
+ `page_id` int(11) NOT NULL,
+ `page_title` varchar(255) DEFAULT NULL,
+ `report_id` int(11) DEFAULT NULL,
+ `date_report` date DEFAULT NULL,
+ `condition` int(11) DEFAULT NULL,
+ `description` mediumtext DEFAULT NULL,
+ `author_name` varchar(30) DEFAULT NULL,
+ `author_username` varchar(30) DEFAULT NULL,
+ PRIMARY KEY (`page_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wrreportcache`
+--
+
+/*!40000 ALTER TABLE `wrreportcache` DISABLE KEYS */;
+/*!40000 ALTER TABLE `wrreportcache` ENABLE KEYS */;
+