app/DoctrineMigrations/Version20260319141022.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20260319141022 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql("UPDATE dtb_mail_template SET footer = 'â– Contact Information
  18. Ward Records, Inc.
  19. Address: 3F Asahi Bldg., 1-2-2 Hirakawacho, Chiyoda-ku, Tokyo 102-0093, Japan
  20. Phone Number: 81-3-6419-7161
  21. URL: http://wardrecords.com
  22. Email Address: shopmaster@wardrecords.com' WHERE id = 1004");
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         $this->addSql('UPDATE dtb_mail_template SET footer = NULL WHERE id IN (1004)');
  27.     }
  28. }