<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20241016101414 extends AbstractMigration
{
public function getDescription(): string
{
return 'Remove plus sign from the beginning of phone numbers in Order entities';
}
public function up(Schema $schema): void
{
$this->addSql("UPDATE `order` SET phone = SUBSTRING(phone, 2) WHERE phone LIKE '+%'");
}
public function down(Schema $schema): void
{
// This migration is not reversible
}
}