<?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 Version20230516155833 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('
INSERT INTO search_engine (id, name, value, dblink)
VALUES
(1, "Link do Buttonów", "ButtonPage", null ),
(2, "Link do Podkategorii", "SubCategoryPage", null ),
(3, "Link do Wizytówek", "PostsPage", null );
');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}