migrations/Version20230629081530.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 Version20230629081530 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return 'Create new notifications';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $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
  18.                         ('FAVORITE_CLASSIC_AUCTION_END_TOMORROW_NOR',47,'<p>Hei %user_name%</p><p>&nbsp;</p><p>En eller flere av dine favoritter har auksjonsavslutning i morgen.&nbsp;</p><p>&nbsp;</p><p>%list_objects_ending_following_day%</p><p>&nbsp;</p><p>&nbsp;</p><p>Mvh,</p><p>Blomqvist&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>Du kan endre dine varslinger på <a href=\"https://www.blomqvist.no/min-side/tilpass-varslinger\">Min side</a>. &nbsp;</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 '),
  19.                         ('FAVORITE_CLASSIC_AUCTION_END_TOMORROW_ENG',47,'<p>Dear %user_name%</p><p>&nbsp;</p><p>The auction with one or more of your favourites is closing tomorrow.</p><p>%list_objects_ending_following_day%&nbsp;</p><p>&nbsp;</p><p>Sincerely,&nbsp;</p><p>Blomqvist&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>Your notification preferences can be changed on <a href=\"https://www.blomqvist.no/en/my-page/customize-alerts\">My Page</a>.&nbsp;</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.&nbsp;</p><p>%list_objects_ending_following_day%&nbsp;</p>','eng-GB','Mine favoritter',21,6,'','','Favourites - Auction closing tomorrow'),
  20.                         ('FAVORITE_CLASSIC_AUCTION_END_2HOURS_NOR',48,'<p>Hei %user_name%</p><p>&nbsp;</p><p>Auksjonen med en av dine favoritter avsluttes om <strong>to timer.&nbsp;</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>&nbsp;</p><p>Meed vennlig hilsen,</p><p>Blomqvist&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>Du kan endre dine varslinger på <a href=\"https://www.blomqvist.no/min-side/tilpass-varslinger\">Min side</a>.&nbsp;</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'),
  21.                         ('FAVORITE_CLASSIC_AUCTION_END_2HOURS_ENG',48,'<p>Dear %user_name%</p><p>&nbsp;</p><p>The auction with one of your favourites is closing in <strong>two hours</strong>.&nbsp;</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>&nbsp;</p><p>Sincerely,&nbsp;</p><p>Blomqvist&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>Your notification preferences can be changed on <a href=\"https://www.blomqvist.no/en/my-page/customize-alerts\">My Page</a>.&nbsp;</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');");
  22.     }
  23.     public function down(Schema $schema): void
  24.     {
  25.         $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');");
  26.     }
  27. }