<?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 Version20260319141022 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("UPDATE dtb_mail_template SET footer = 'â– Contact Information
Ward Records, Inc.
Address: 3F Asahi Bldg., 1-2-2 Hirakawacho, Chiyoda-ku, Tokyo 102-0093, Japan
Phone Number: 81-3-6419-7161
URL: http://wardrecords.com
Email Address: shopmaster@wardrecords.com' WHERE id = 1004");
}
public function down(Schema $schema): void
{
$this->addSql('UPDATE dtb_mail_template SET footer = NULL WHERE id IN (1004)');
}
}