Fixed Typo

Change-Id: Iafd159c4ee0a4c9a2d69f50210ff6a8f8327f6d6
Signed-off-by: smarcet <smarcet@gmail.com>
This commit is contained in:
smarcet 2021-06-03 16:01:48 -03:00
parent c324f799dd
commit 8a00007b4d
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class Version20210603182544 extends AbstractMigration
public function up(Schema $schema):void
{
$sql = <<<SQL
ALTER TABLE `ExtraQuestionTypeValue` CHANGE `Value` TEXT MEDIUMTEXT CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL;
ALTER TABLE `ExtraQuestionTypeValue` CHANGE `Value` `Value` TEXT CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL;
SQL;
$this->addSql($sql);
}