migrations/2022/01/Version20220106134703.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20220106134703 extends AbstractMigration{public function up(Schema $schema): void{$this->addSql('ALTER TABLE app_notification ADD header VARCHAR(255) NOT NULL');}public function down(Schema $schema): void{$this->addSql('ALTER TABLE app_notification DROP header');}}