<?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 Version20230629081530 extends AbstractMigration
{
public function getDescription(): string
{
return 'Create new notifications';
}
public function up(Schema $schema): void
{
$this->addSql("INSERT INTO `notification_template` (identifier, notification_type, text_email, text_sms, subject, created_at, updated_at, text_system, notification_language, category, setting, profile_default, icon, color, profile_title) VALUES
('FAVORITE_CLASSIC_AUCTION_END_TOMORROW_NOR',47,'<p>Hei %user_name%</p><p> </p><p>En eller flere av dine favoritter har auksjonsavslutning i morgen. </p><p> </p><p>%list_objects_ending_following_day%</p><p> </p><p> </p><p>Mvh,</p><p>Blomqvist </p><p> </p><p> </p><p>Du kan endre dine varslinger på <a href=\"https://www.blomqvist.no/min-side/tilpass-varslinger\">Min side</a>. </p>','En eller flere av dine favoritter har auksjonsavslutning i morgen. Oversikten finner du her: www.blomqvist.no/min-side/favoritter','Auksjonsavslutning for din favoritt i morgen ','2023-06-29 13:03:43','2023-06-29 13:03:43','<p>Auksjonen med en av dine favoritter avsluttes i morgen. %list_objects_ending_following_day%</p>','nor-NO','Mine favoritter',21,6,'','','Auksjonsavslutning i morgen '),
('FAVORITE_CLASSIC_AUCTION_END_TOMORROW_ENG',47,'<p>Dear %user_name%</p><p> </p><p>The auction with one or more of your favourites is closing tomorrow.</p><p>%list_objects_ending_following_day% </p><p> </p><p>Sincerely, </p><p>Blomqvist </p><p> </p><p> </p><p>Your notification preferences can be changed on <a href=\"https://www.blomqvist.no/en/my-page/customize-alerts\">My Page</a>. </p>','The auction for one or more of your favourites is closing tomorrow. Head to your favourites overview for details www.blomqvist.no/en/my-page/favorites\n','The auction for your favourites closing tomorrow ','2023-06-29 13:03:43','2023-06-29 13:03:43','<p>The auction with one or more of your favourites is closing tomorrow. </p><p>%list_objects_ending_following_day% </p>','eng-GB','Mine favoritter',21,6,'','','Favourites - Auction closing tomorrow'),
('FAVORITE_CLASSIC_AUCTION_END_2HOURS_NOR',48,'<p>Hei %user_name%</p><p> </p><p>Auksjonen med en av dine favoritter avsluttes om <strong>to timer. </strong></p><p>Objektnummer: <a href=\"%link_to_lot%\">%lot_number%</a> <a href=\"%link_to_lot%\">%object_title%</a></p><p>Vurdering: %evaluation%</p><p>Auksjonsavslutning: %auction_end_date_time%</p><p> </p><p>Meed vennlig hilsen,</p><p>Blomqvist </p><p> </p><p> </p><p>Du kan endre dine varslinger på <a href=\"https://www.blomqvist.no/min-side/tilpass-varslinger\">Min side</a>. </p>','Auksjonen med en av dine favoritter avsluttes om to timer. %lot_number% %object_title%, %link_to_lot%','Auksjon avsluttes om to timer','2023-06-29 13:03:43','2023-06-29 13:03:43','<p>Auksjonen med en av dine favoritter avsluttes om <strong>to timer</strong>. <a href=\"%link_to_lot%\">%lot_number% %object_title%</a></p>','nor-NO','Mine favoritter',21,6,'','','Auksjonsavslutning om to timer'),
('FAVORITE_CLASSIC_AUCTION_END_2HOURS_ENG',48,'<p>Dear %user_name%</p><p> </p><p>The auction with one of your favourites is closing in <strong>two hours</strong>. </p><p>Lot : <a href=\"%link_to_lot%\">%lot_number% %object_title%</a></p><p>Estimate: %evaluation%</p><p>The auction closes at %auction_end_date_time%</p><p> </p><p>Sincerely, </p><p>Blomqvist </p><p> </p><p> </p><p>Your notification preferences can be changed on <a href=\"https://www.blomqvist.no/en/my-page/customize-alerts\">My Page</a>. </p>','The auction with one of your favourites is closing in two hours. %lot_number% %object_title%. %link_to_lot%','Auction closing in two hours','2023-06-29 13:03:43','2023-06-29 13:03:43','<p>The auction with one of your favourites is closing in <strong>two hours</strong>. <a href=\"%link_to_lot%\">%lot_number% %object_title%</a></p>','eng-GB','Mine favoritter',21,6,'','','Auction closing in two hours');");
}
public function down(Schema $schema): void
{
$this->addSql("DELETE FROM notification_template WHERE identifier IN ('FAVORITE_CLASSIC_AUCTION_END_TOMORROW_NOR', 'FAVORITE_CLASSIC_AUCTION_END_TOMORROW_ENG', 'FAVORITE_CLASSIC_AUCTION_END_2HOURS_NOR', 'FAVORITE_CLASSIC_AUCTION_END_2HOURS_ENG');");
}
}