<?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 Version20250613071209 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("INSERT INTO api_dict_survey_question_type (id, created_by, updated_by, name, created_at, updated_at, code) VALUES (gen_random_uuid(), null, null, 'Mapa - punkt', null, null, 'map_point')");
$this->addSql("INSERT INTO api_dict_survey_question_type (id, created_by, updated_by, name, created_at, updated_at, code) VALUES (gen_random_uuid(), null, null, 'Mapa - poligon', null, null, 'map_polygon')");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}