<?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 Version20240301081713 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 price_grid ADD schenker_inter_marpol DOUBLE PRECISION DEFAULT NULL, ADD schenker_inter_surete DOUBLE PRECISION DEFAULT NULL, ADD schenker_inter_contibution_energetique DOUBLE PRECISION DEFAULT NULL, ADD fedex_livraison_particulier DOUBLE PRECISION DEFAULT NULL, ADD fedex_livraison_non_convoyable DOUBLE PRECISION DEFAULT NULL, ADD fedex_hors_norme DOUBLE PRECISION DEFAULT NULL, ADD fedex_poids_eleve DOUBLE PRECISION DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE price_grid DROP schenker_inter_marpol, DROP schenker_inter_surete, DROP schenker_inter_contibution_energetique, DROP fedex_livraison_particulier, DROP fedex_livraison_non_convoyable, DROP fedex_hors_norme, DROP fedex_poids_eleve');
}
}