<?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 Version20250530210136 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 road_occupation_stage ADD road_width2 DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE road_occupation_stage ADD road_width3 DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE road_occupation_stage ADD road_length2 DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE road_occupation_stage ADD road_length3 DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE road_occupation_stage ADD road_area2 DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE road_occupation_stage ADD road_area3 DOUBLE PRECISION DEFAULT NULL');
}
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('ALTER TABLE road_occupation_stage DROP road_width2');
$this->addSql('ALTER TABLE road_occupation_stage DROP road_width3');
$this->addSql('ALTER TABLE road_occupation_stage DROP road_length2');
$this->addSql('ALTER TABLE road_occupation_stage DROP road_length3');
$this->addSql('ALTER TABLE road_occupation_stage DROP road_area2');
$this->addSql('ALTER TABLE road_occupation_stage DROP road_area3');
}
}