<?phpdeclare(strict_types=1);namespaceDoctrineMigrations;useDoctrine\DBAL\Schema\Schema;useDoctrine\Migrations\AbstractMigration;/** * Auto-generated Migration: Please modify to your needs! */finalclassVersion20200619134116extendsAbstractMigration{publicfunctiongetDescription():string{return'';}publicfunctionup(Schema$schema):void{// this up() migration is auto-generated, please modify it to your needs$this->addSql('ALTER TABLE import ADD sendemail VARCHAR(100) NOT NULL');}publicfunctiondown(Schema$schema):void{// this down() migration is auto-generated, please modify it to your needs$this->addSql('ALTER TABLE import DROP sendemail');}}