<?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 Version20231102132654 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql("INSERT INTO `module` (`id`, `title`, `role`, `status`, `code`, `comment`, `gemeinde_required`, `sort`) VALUES
(12, 'Konzessionsgesuch AFG', 'ROLE_MODULE_KG_AFG', 1, 'KGG', 'Bewirtschaftung vor allem durch Amt für Gewässer (AFG).\r\nModul Live geschalten am: 01.01.2024', 0, 91),
(13, 'Konzessionsgesuch AFU', 'ROLE_MODULE_KG_AFU', 1, 'KGU', 'Bewirtschaftung vor allem durch Amt für Umwelt und Energie (AFU).\r\nModul Live geschalten am: 01.01.2024', 0, 92)
");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}