From 41249fdec3c5efa77950a60593811584d010bd52 Mon Sep 17 00:00:00 2001 From: Carlo Beltrame Date: Wed, 17 Apr 2024 12:42:50 +0200 Subject: [PATCH] Remove mistaken comments --- api/migrations/schema/Version20240416120000.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/api/migrations/schema/Version20240416120000.php b/api/migrations/schema/Version20240416120000.php index aeb9a83845..1dff7dad94 100644 --- a/api/migrations/schema/Version20240416120000.php +++ b/api/migrations/schema/Version20240416120000.php @@ -13,13 +13,11 @@ public function getDescription(): string { } public function up(Schema $schema): void { - // this up() migration is auto-generated, please modify it to your needs $this->addSql('INSERT INTO public.content_type (id, name, active, entityclass, jsonconfig, createtime, updatetime) VALUES (\'c462edd869f3\', \'LearningObjectives\', true, \'App\Entity\ContentNode\SingleText\', \'[]\', \'2024-04-16 12:00:00\', \'2024-04-16 12:00:00\');'); $this->addSql('INSERT INTO public.content_type (id, name, active, entityclass, jsonconfig, createtime, updatetime) VALUES (\'5e2028c55ee4\', \'LearningTopics\', true, \'App\Entity\ContentNode\SingleText\', \'[]\', \'2024-04-16 12:00:00\', \'2024-04-16 12:00:00\');'); } public function down(Schema $schema): void { - // this down() migration is auto-generated, please modify it to your needs $this->addSql('DELETE FROM public.content_type WHERE id IN (\'c462edd869f3\', \'5e2028c55ee4\')'); } }