From fd504ab57eb0d34d8b4b0b7b57e8bbdc1a13233e Mon Sep 17 00:00:00 2001 From: NicoDucou Date: Fri, 15 Dec 2023 12:06:47 +0100 Subject: [PATCH] Migration: Social: fix migration to have the minimum function to be able to be instanciated -refs BT#21270 --- .../Migrations/Schema/V200/Version20231026221100.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/CoreBundle/Migrations/Schema/V200/Version20231026221100.php b/src/CoreBundle/Migrations/Schema/V200/Version20231026221100.php index 142c2ffa11e..7d9697e51af 100644 --- a/src/CoreBundle/Migrations/Schema/V200/Version20231026221100.php +++ b/src/CoreBundle/Migrations/Schema/V200/Version20231026221100.php @@ -11,4 +11,12 @@ class Version20231026221100 extends AbstractMigrationChamilo { + public function getDescription(): string + { + return 'Migration of Add table social_post_attachments moved to Version20230720222140'; + } + + public function up(Schema $schema): void + { + } }