<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Update all psid fields in gemeinde table to new value
*/
final class Version20251124080000 extends AbstractMigration
{
public function getDescription(): string
{
return 'Update all psid fields in gemeinde table to 8653d179-92f8-11f0-94f3-045056009024';
}
public function up(Schema $schema): void
{
$this->addSql('UPDATE gemeinde SET psid = \'8653d179-92f8-11f0-94f3-045056009024\'');
}
public function down(Schema $schema): void
{
$this->addSql('UPDATE gemeinde SET psid = \'5714a07f-b33a-11f0-b666-04505600905b\'');
}
}