<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20231121160019 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('UPDATE `order` SET payment_state = "awaiting_payment" WHERE payment_state = "new"');
}
public function down(Schema $schema): void
{
$this->addSql('UPDATE `order` SET payment_state = "new" WHERE payment_state = "awaiting_payment"');
// this down() migration is auto-generated, please modify it to your needs
}
}