<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20241216144144 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add regularTotal field to Order entity';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE `order` ADD regular_total DOUBLE PRECISION DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE `order` DROP regular_total');
}
}