<?php
declare(strict_types=1);
namespace SuppliersOrdersBundleMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20241227123305 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE suppliers_orders_bundle__receipt_note_line ADD quantity_remaining NUMERIC(20, 6) DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE suppliers_orders_bundle__receipt_note_line DROP quantity_remaining');
}
}