<?php
declare(strict_types=1);
namespace InventoriesBundleMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20230623090456 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE inventories_bundle__inventory ADD y VARCHAR(128) DEFAULT NULL, ADD z VARCHAR(128) DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE inventories_bundle__inventory DROP y, DROP z');
}
}