<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Added asap field to shop_mode table
*/
final class Version20260211160653 extends AbstractMigration
{
public function getDescription(): string
{
return 'Adds the "asap" (As Soon As Possible) boolean flag to the shop_mode table.';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE shop_mode ADD asap TINYINT(1) DEFAULT 0 NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE shop_mode DROP asap');
}
}