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