<?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 Version20220415131447 extends AbstractMigration
{
public function getDescription(): string
{
return 'Create new notification template';
}
public function up(Schema $schema): void
{
$this->addSql("INSERT INTO notification_template (notification_type,notification_language,text_email,text_sms,subject,created_at,updated_at,text_system) VALUES
(125,'nor-NO','%header% <p>The user %user_number% chose the PICK UP IN BERGEN for object %object_id%</p> %footer%',NULL,'Bekreft din e-post','2022-04-14 14:35:44','2022-04-14 14:35:44',NULL)");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}