<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use App\Entity\DomainLang;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20240410120240 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add hike trails';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE page ADD hike_trail TINYINT(1) DEFAULT 0 NOT NULL');
$domainLangIds = $this->connection->fetchAllAssociative('SELECT id FROM domain_lang');
foreach ($domainLangIds as $domainLangId) {
$this->addSql("
INSERT INTO page (domain_id, domain_lang_id, title, slug, url, created_at, updated_at, template)
VALUES (1, :domainLangId, 'Hiking trails', 'hike-trails', 'hike-trails', NOW(), NOW(), 0)
ON DUPLICATE KEY UPDATE
updated_at = NOW();
", [
'domainLangId' => $domainLangId['id']
]);
}
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE page DROP hike_trail');
$this->addSql("DELETE FROM page WHERE slug = 'hike-trails'");
}
}