<?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 Version20230727145539 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 widget ADD sale_image VARCHAR(255) DEFAULT NULL');
$this->addSql('ALTER TABLE widget ADD sale_color VARCHAR(255) DEFAULT NULL');
$this->addSql('ALTER TABLE widget ADD sale_product_ids JSON DEFAULT NULL');
$this->addSql('UPDATE widget SET sale_product_ids = \'[]\' WHERE sale_product_ids IS 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 widget DROP sale_image');
$this->addSql('ALTER TABLE widget DROP sale_color');
$this->addSql('ALTER TABLE widget DROP sale_product_ids');
}
}