<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20221014155939 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add a "notes" field to the customer table.';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE customer ADD notes LONGTEXT DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE customer DROP notes');
}
}