Removed useless “test” table

This commit is contained in:
pezcurrel 2023-12-25 22:38:07 +01:00
parent a8da4b4ae6
commit 9ea1579b65

View file

@ -580,23 +580,6 @@ CREATE TABLE `ZStats` (
`Visits` int(10) unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `test`
--
DROP TABLE IF EXISTS `test`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `test` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`CampoA` varchar(256) DEFAULT NULL,
`CampoB` varchar(1024) DEFAULT NULL,
`CampoC` varchar(2048) DEFAULT NULL,
`CampoD` bigint(20) unsigned DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
@ -607,4 +590,4 @@ CREATE TABLE `test` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-12-24 22:37:00
-- Dump completed on 2023-12-25 22:37:29