Skip to content

Commit

Permalink
Merge pull request #18 from serlo/fix
Browse files Browse the repository at this point in the history
fix: Fix naming of migration
  • Loading branch information
hugotiburtino authored Aug 31, 2023
2 parents 29458f1 + 4200fd8 commit 41f79cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.3.1
6 changes: 3 additions & 3 deletions docker-entrypoint-initdb.d/001-init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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 */;
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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

0 comments on commit 41f79cc

Please sign in to comment.