<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;/** * Auto-generated Migration: Please modify to your needs! */final class Version20210330194422 extends AbstractMigration{ public function up(Schema $schema): void { $this->addSql('ALTER TABLE image CHANGE lot_id lot_id INT DEFAULT NULL'); } public function down(Schema $schema): void { $this->addSql('ALTER TABLE image CHANGE lot_id lot_id INT NOT NULL'); }}