<?php
declare(strict_types=1);
namespace StocksBundleMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20240627071256 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE stocks_bundle__mass_stock_removal ADD note LONGTEXT DEFAULT NULL');
$this->addSql('ALTER TABLE stocks_bundle__mass_stock_removal_line ADD note LONGTEXT DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE stocks_bundle__mass_stock_removal DROP note');
$this->addSql('ALTER TABLE stocks_bundle__mass_stock_removal_line DROP note');
}
}