<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20250214075402 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("INSERT INTO dict_document_template_type (id, name, code, created_at, updated_at) VALUES (gen_random_uuid(), 'Wniosek', 'wniosek', NOW(), NOW())");
$this->addSql("INSERT INTO dict_document_template_type (id, name, code, created_at, updated_at) VALUES (gen_random_uuid(), 'Pismo', 'pismo', NOW(), NOW())");
}
public function down(Schema $schema): void
{
}
}