<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use App\Notification\YourLotsAreLiveOnlineNotification;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20220530222721 extends AbstractMigration
{
public function getDescription(): string
{
return 'Update YourLotsAreLiveOnlineNotification list_all_lots';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$text_email_no = "%header% <p>Hei %user_name%</p> <p>Ditt objekt er nå på auksjon hos Blomqvist. Du kan følge auksjonen på Blomqvist.no</p> %list_all_lots% %footer%";
$text_email_en = "%header% <p>Hi %user_name%</p> <p>Your lot is now live on Blomqvist.no. You can follow the auction online.</p> %list_all_lots% %footer%";
$this->addSql("UPDATE notification_template SET text_email = '{$text_email_no}' WHERE notification_type = " . YourLotsAreLiveOnlineNotification::TYPE . " AND notification_language = 'nor-NO'");
$this->addSql("UPDATE notification_template SET text_email = '{$text_email_en}' WHERE notification_type = " . YourLotsAreLiveOnlineNotification::TYPE . " AND notification_language = 'eng-GB'");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$text_email_no = "%header% <p>Hei %user_first_name% %user_last_name%</p> <p>Ditt objekt er nå på auksjon hos Blomqvist. Du kan følge auksjonen på Blomqvist.no</p> <p>%list_all_lots%</p> <br> <hr> <p>Objektnummer: %lot_number%, %link_to_lot%</p> <p>Beskrivelse: %artist%, %title%</p> <p>Vurdering: %low_estimate% - %high_estimate%</p> <p>Startbud: %current_bid%</p> <p>Auksjonsavslutning: %auction_end_date_time%</p> <hr> <br> %footer%";
$text_email_en = "%header% <p>Hei %user_first_name% %user_last_name%</p> <p>Your lot is now live on Blomqvist.no. You can follow the auction online.</p> <p>%list_all_lots%</p> <br> <hr> <p>Lot number: %lot_number%, %link_to_lot%</p> <p>Description: %artist%, %title%</p> <p>Estimate: %low_estimate% - %high_estimate%</p> <p>Starting bid: %current_bid%</p> <p>The auction ends: %auction_end_date_time%</p> <hr> <br> %footer%";
$this->addSql("UPDATE notification_template SET text_email = '{$text_email_no}' WHERE notification_type = " . YourLotsAreLiveOnlineNotification::TYPE . " AND notification_language = 'nor-NO'");
$this->addSql("UPDATE notification_template SET text_email = '{$text_email_en}' WHERE notification_type = " . YourLotsAreLiveOnlineNotification::TYPE . " AND notification_language = 'eng-GB'");
}
}