<?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 Version20250419133540 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 ('ebdf221a-c3bb-4a85-aec8-69fd11e9c08f', null, null, 'Wielokrotny wybór', null, null, 'checkbox')");
$this->addSql("INSERT INTO api_dict_survey_question_type (id, created_by, updated_by, name, created_at, updated_at, code) VALUES ('e68b1070-b1a1-4590-bd5f-c851c11944cf', null, null, 'Pojedyńczy wybór', null, null, 'radio')");
$this->addSql("INSERT INTO api_dict_survey_question_type (id, created_by, updated_by, name, created_at, updated_at, code) VALUES ('ee16b960-262a-4176-9555-bcb5b3480de1', null, null, 'Pytanie otwarte', null, null, 'textarea')");
$this->addSql("INSERT INTO api_dict_survey_question_type (id, created_by, updated_by, name, created_at, updated_at, code) VALUES ('bff8a636-7f96-4a20-a61c-3ae11c3a8c49', null, null, 'Pytanie otwarte z załącznikiem', null, null, 'textarea_with_attachments')");
$this->addSql("INSERT INTO api_dict_survey_status (id, created_by, updated_by, name, code, created_at, updated_at) VALUES ('9fb14b5a-298f-402e-a7a7-a0cc09758381', null, null, 'Aktualna', 'active', null, null)");
$this->addSql("INSERT INTO api_dict_survey_status (id, created_by, updated_by, name, code, created_at, updated_at) VALUES ('7edc67df-4de4-498e-beb2-739787c1d69b', null, null, 'Zrealizowana', 'finished', null, null)");
$this->addSql("INSERT INTO api_dict_survey_type (id, created_by, updated_by, name, code, created_at, updated_at) VALUES ('ed570fcc-0697-43e6-aaa8-01bc4b0325c4', null, null, 'Ankieta', 'survey', '2022-08-17 00:12:41', '2022-08-17 00:12:41')");
$this->addSql("INSERT INTO api_dict_survey_type (id, created_by, updated_by, name, code, created_at, updated_at) VALUES ('85366bc7-4adb-4a1d-8ef1-d892a5a9e354', null, null, 'Budżet partycypacyjny', 'budget', '2022-08-17 00:12:41', '2022-08-17 00:12:41')");
}
public function down(Schema $schema): void
{
}
}