<?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 Version20230418153452 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql("INSERT INTO page (domain_id, domain_lang_id, title, slug, url, created_at, updated_at, template) VALUES (1,2, 'Terms and conditions', 'terms-and-conditions', 'terms-and-conditions', '2023-04-01 00:00:00', '2023-04-01 00:00:00', 0)");
$this->addSql("INSERT INTO page (domain_id, domain_lang_id, title, slug, url, created_at, updated_at, template) VALUES (1,2, 'Privacy policy', 'privacy-policy', 'privacy-policy', '2023-04-01 00:00:00', '2023-04-01 00:00:00', 0)");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}