Skip to content

Commit

Permalink
migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-stanek committed Oct 19, 2023
1 parent 337480f commit 64a245e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions migrations/Version20231019083145.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

declare(strict_types=1);

namespace Migrations;

use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;

final class Version20231019083145 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}

public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE mail CHANGE recipient_emails recipient_emails longtext COLLATE \'utf8_unicode_ci\' NULL');
}

public function down(Schema $schema): void
{
}
}

0 comments on commit 64a245e

Please sign in to comment.