From 4200fd8fe0868bdd1ff4c03a8279171bcb409df6 Mon Sep 17 00:00:00 2001 From: Stephan Kulla Date: Thu, 31 Aug 2023 11:20:36 +0200 Subject: [PATCH] fix: Fix naming of migration --- VERSION | 2 +- docker-entrypoint-initdb.d/001-init.sql | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 0d91a54..9e11b32 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.0 +0.3.1 diff --git a/docker-entrypoint-initdb.d/001-init.sql b/docker-entrypoint-initdb.d/001-init.sql index 2f1127f..4223c67 100644 --- a/docker-entrypoint-initdb.d/001-init.sql +++ b/docker-entrypoint-initdb.d/001-init.sql @@ -244,7 +244,7 @@ DROP TABLE IF EXISTS `comment_status`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `comment_status` ( `id` int NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, + `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; @@ -852,7 +852,7 @@ CREATE TABLE `migrations` ( LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; -INSERT INTO `migrations` VALUES (1,'/20200218131744-remove-hints','2020-06-16 12:13:49'),(2,'/20200219033825-remove-hint-type','2020-06-16 12:13:49'),(3,'/20200220140328-migrate-solutions','2020-06-16 12:13:49'),(4,'/20200220155526-migrate-exercises','2020-06-16 12:13:49'),(5,'/20200501125958-remove-contexter','2020-06-16 12:13:49'),(6,'/20200520065142-remove-splish-states','2020-06-16 12:13:49'),(7,'/20201023104526-update-subjects','2020-12-18 15:14:26'),(8,'/20201101234700-migrate-equations','2020-12-18 15:14:26'),(9,'/20201113155000-clear-dead-uuids','2020-12-18 15:14:27'),(10,'/20201218151642-remove-splish-states','2020-12-18 15:14:28'),(11,'/20210923155000-add-first-explanation-to-equation','2022-03-29 13:23:35'),(12,'/20210923231900-add-transformation-target-to-equations','2022-03-29 13:23:35'),(13,'/20211101205000-move-physics-to-subjects-under-construction','2022-03-29 13:23:35'),(21,'/23082921270000-add-status-to-comment-table','2023-08-29 23:22:41'); +INSERT INTO `migrations` VALUES (1,'/20200218131744-remove-hints','2020-06-16 12:13:49'),(2,'/20200219033825-remove-hint-type','2020-06-16 12:13:49'),(3,'/20200220140328-migrate-solutions','2020-06-16 12:13:49'),(4,'/20200220155526-migrate-exercises','2020-06-16 12:13:49'),(5,'/20200501125958-remove-contexter','2020-06-16 12:13:49'),(6,'/20200520065142-remove-splish-states','2020-06-16 12:13:49'),(7,'/20201023104526-update-subjects','2020-12-18 15:14:26'),(8,'/20201101234700-migrate-equations','2020-12-18 15:14:26'),(9,'/20201113155000-clear-dead-uuids','2020-12-18 15:14:27'),(10,'/20201218151642-remove-splish-states','2020-12-18 15:14:28'),(11,'/20210923155000-add-first-explanation-to-equation','2022-03-29 13:23:35'),(12,'/20210923231900-add-transformation-target-to-equations','2022-03-29 13:23:35'),(13,'/20211101205000-move-physics-to-subjects-under-construction','2022-03-29 13:23:35'),(21,'/20230829212700-add-status-to-comment-table','2023-08-29 23:22:41'); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; @@ -1784,4 +1784,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2023-08-29 21:23:22 +-- Dump completed on 2023-08-31 9:18:48