<?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 Version20220228092931 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 redevance_securite DOUBLE PRECISION DEFAULT NULL, ADD livraison_samedi DOUBLE PRECISION DEFAULT NULL, ADD relais_colis DOUBLE PRECISION DEFAULT NULL, ADD avis_rc DOUBLE PRECISION DEFAULT NULL, ADD zone_eloignee DOUBLE PRECISION DEFAULT NULL, ADD hors_normes DOUBLE PRECISION DEFAULT NULL, ADD colis_non_mecanisable 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 redevance_securite, DROP livraison_samedi, DROP relais_colis, DROP avis_rc, DROP zone_eloignee, DROP hors_normes, DROP colis_non_mecanisable');
}
}