<?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 Version20240724100850 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("INSERT INTO dict_road_occupation_unit_fee (id, name, code, fee) VALUES (gen_random_uuid(), 'Droga', 'droga', 1.50)");
$this->addSql("INSERT INTO dict_road_occupation_unit_fee (id, name, code, fee) VALUES (gen_random_uuid(), 'Chodnik', 'chodnik', 2.20)");
$this->addSql("INSERT INTO dict_road_occupation_unit_fee (id, name, code, fee) VALUES (gen_random_uuid(), 'Pobocze', 'pobocze', 1.20)");
$this->addSql("INSERT INTO dict_road_occupation_unit_fee (id, name, code, fee) VALUES (gen_random_uuid(), 'Zieleń', 'zielen', 0.70)");
$this->addSql("INSERT INTO dict_road_occupation_unit_fee (id, name, code, fee) VALUES (gen_random_uuid(), 'Inne elementy', 'inne', 1.00)");
}
public function down(Schema $schema): void
{
}
}