<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20220124215709 extends AbstractMigration{ public function up(Schema $schema): void { $this->addSql('ALTER TABLE payment ADD date DATETIME NOT NULL, ADD sum INT NOT NULL'); } public function down(Schema $schema): void { $this->addSql('ALTER TABLE payment DROP date, DROP sum'); }}