<?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 Version20230803142434 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("UPDATE notification_template SET identifier = 'BID_CONFIRMATION_LEADING_ENG' WHERE identifier = 'BID_CONFIRMATION_LEADING_AUTOBID_ENG'");
$this->addSql("UPDATE notification_template SET identifier = 'BID_CONFIRMATION_LEADING_NOR' WHERE identifier = 'BID_CONFIRMATION_LEADING_AUTOBID_NOR'");
$this->addSql("UPDATE notification_template SET identifier = 'BID_CONFIRMATION_OUTBID_ENG' WHERE identifier = 'BID_CONFIRMATION_OUTBID_AUTOBID_ENG'");
$this->addSql("UPDATE notification_template SET identifier = 'BID_CONFIRMATION_OUTBID_NOR' WHERE identifier = 'BID_CONFIRMATION_OUTBID_AUTOBID_NOR'");
$this->addSql("UPDATE notification_template SET identifier = 'OUTBID_ENG' WHERE identifier = 'BID_CONFIRMATION_OUTBID_ENG'");
$this->addSql("UPDATE notification_template SET identifier = 'OUTBID_NOR' WHERE identifier = 'BID_CONFIRMATION_OUTBID_NOR'");
}
public function down(Schema $schema): void
{
$this->addSql("UPDATE notification_template SET identifier = 'BID_CONFIRMATION_LEADING_AUTOBID_ENG' WHERE identifier = 'BID_CONFIRMATION_LEADING_ENG'");
$this->addSql("UPDATE notification_template SET identifier = 'BID_CONFIRMATION_LEADING_AUTOBID_NOR' WHERE identifier = 'BID_CONFIRMATION_LEADING_NOR'");
$this->addSql("UPDATE notification_template SET identifier = 'BID_CONFIRMATION_OUTBID_AUTOBID_ENG' WHERE identifier = 'BID_CONFIRMATION_OUTBID_ENG'");
$this->addSql("UPDATE notification_template SET identifier = 'BID_CONFIRMATION_OUTBID_AUTOBID_NOR' WHERE identifier = 'BID_CONFIRMATION_OUTBID_NOR'");
$this->addSql("UPDATE notification_template SET identifier = 'BID_CONFIRMATION_OUTBID_ENG' WHERE identifier = 'OUTBID_ENG'");
$this->addSql("UPDATE notification_template SET identifier = 'BID_CONFIRMATION_OUTBID_NOR' WHERE identifier = 'OUTBID_NOR'");
}
}