2023-11-17_19-49-58Z_Friday database changed

This commit is contained in:
2023-11-17 20:49:58 +01:00
parent c22336b59c
commit 684a926d90
11 changed files with 158 additions and 130 deletions

View File

@@ -1,3 +1,17 @@
--
-- Table structure for table `miniseries`
--
DROP TABLE IF EXISTS `miniseries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `miniseries` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`description` text NOT NULL,
`private` tinyint(1) NOT NULL DEFAULT 0,
`image` text NOT NULL,
`valid` int(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=123 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -439,4 +453,4 @@ UNLOCK TABLES;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-11-15 19:56:06
-- Dump completed on 2023-11-17 19:48:25