migrations/Version20240410120240.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use App\Entity\DomainLang;
  5. use Doctrine\DBAL\Schema\Schema;
  6. use Doctrine\Migrations\AbstractMigration;
  7. final class Version20240410120240 extends AbstractMigration
  8. {
  9.     public function getDescription(): string
  10.     {
  11.         return 'Add hike trails';
  12.     }
  13.     public function up(Schema $schema): void
  14.     {
  15.         $this->addSql('ALTER TABLE page ADD hike_trail TINYINT(1) DEFAULT 0 NOT NULL');
  16.         $domainLangIds $this->connection->fetchAllAssociative('SELECT id FROM domain_lang');
  17.         foreach ($domainLangIds as $domainLangId) {
  18.             $this->addSql("
  19.                 INSERT INTO page (domain_id, domain_lang_id, title, slug, url, created_at, updated_at, template)
  20.                 VALUES (1, :domainLangId, 'Hiking trails', 'hike-trails', 'hike-trails', NOW(), NOW(), 0)
  21.                 ON DUPLICATE KEY UPDATE
  22.                     updated_at = NOW();
  23.             ", [
  24.                 'domainLangId' => $domainLangId['id']
  25.             ]);
  26.         }
  27.     }
  28.     public function down(Schema $schema): void
  29.     {
  30.         $this->addSql('ALTER TABLE page DROP hike_trail');
  31.         $this->addSql("DELETE FROM page WHERE slug = 'hike-trails'");
  32.     }
  33. }