<?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 Version20251001122649 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 eaf_educ_parcelle_commune ADD uuid VARCHAR(255) NOT NULL');
$this->addSql('CREATE UNIQUE INDEX UNIQ_A06F486BD17F50A6 ON eaf_educ_parcelle_commune (uuid)');
$this->addSql('ALTER TABLE eaf_educ_vad ADD uuid VARCHAR(255) NOT NULL');
$this->addSql('CREATE UNIQUE INDEX UNIQ_BCC8CD68D17F50A6 ON eaf_educ_vad (uuid)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
$this->addSql('DROP INDEX UNIQ_BCC8CD68D17F50A6');
$this->addSql('ALTER TABLE eaf_educ_vad DROP uuid');
$this->addSql('DROP INDEX UNIQ_A06F486BD17F50A6');
$this->addSql('ALTER TABLE eaf_educ_parcelle_commune DROP uuid');
}
}