<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20250326142037 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add fields Order.{delivered} and CustomerDelivery.{delivered}';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE customer_delivery ADD delivered TINYINT(1) DEFAULT 0 NOT NULL');
$this->addSql('ALTER TABLE `order` ADD delivered TINYINT(1) DEFAULT 0 NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE customer_delivery DROP delivered');
$this->addSql('ALTER TABLE `order` DROP delivered');
}
}