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