<?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 Version20230314095555 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 offer_line ADD line_number INT NULL');
$this->addSql('UPDATE offer_line SET line_number = 0');
$this->addSql('ALTER TABLE offer_line MODIFY line_number INT NOT NULL');
$this->addSql('ALTER TABLE offer ADD currency VARCHAR(100) NULL');
$this->addSql('UPDATE offer set currency = "EUR"');
$this->addSql('ALTER TABLE offer MODIFY currency VARCHAR(100) NOT NULL');
$this->addSql('ALTER TABLE offer ADD locale VARCHAR(100) NULL');
$this->addSql('UPDATE offer set locale = "es-ES"');
$this->addSql('ALTER TABLE offer MODIFY locale VARCHAR(100) NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE offer_line DROP line_number');
$this->addSql('ALTER TABLE offer DROP currency');
$this->addSql('ALTER TABLE offer DROP locale');
}
}