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