<?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 Version20220121141031 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("
UPDATE std_pages_content SET content = REPLACE(content, 'condiu00e7u00f5es', 'condições') WHERE `title` = 'Termos e condições';
");
}
public function down(Schema $schema): void
{
$this->addSql("
UPDATE std_pages_content SET content = REPLACE(content, 'condições', 'condiu00e7u00f5es') WHERE `title` = 'Termos e condições';
");
}
}