migrations/2020/05/Version20200528083833.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20200528083833 extends AbstractMigration{public function up(Schema $schema): void{$this->addSql('ALTER TABLE invoice CHANGE notes notes LONGTEXT DEFAULT NULL');}public function down(Schema $schema): void{$this->addSql('ALTER TABLE invoice CHANGE notes notes LONGTEXT CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`');}}