<?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 Version20251018115520 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("INSERT INTO dict_entity_type (id, name, code, created_at, updated_at) VALUES (gen_random_uuid(), 'PozostaĆe podmioty', 'POZOSTALE_PODMIOTY', NOW(), NOW())");
}
public function down(Schema $schema): void
{
$this->addSql("DELETE FROM dict_entity_type WHERE code = 'POZOSTALE_PODMIOTY'");
}
}