<?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 Version20240214150355 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('ALTER TABLE gemeinde CHANGE rg_config rg_config JSON DEFAULT NULL, CHANGE bg_config bg_config JSON DEFAULT NULL, CHANGE sp_config sp_config JSON DEFAULT NULL, CHANGE gp_config gp_config JSON DEFAULT NULL, CHANGE np_config np_config JSON DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE gemeinde CHANGE bg_config bg_config LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:array)\', CHANGE rg_config rg_config LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:array)\', CHANGE sp_config sp_config LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:array)\', CHANGE gp_config gp_config LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:array)\', CHANGE np_config np_config LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:array)\'');
}
}