<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20250629172530 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE detail ADD ht_price DOUBLE PRECISION NOT NULL');
$this->addSql('ALTER TABLE invoice ADD tax DOUBLE PRECISION NOT NULL');
$this->addSql('ALTER TABLE `order` ADD ht_amount DOUBLE PRECISION NOT NULL, ADD ht_shipping DOUBLE PRECISION NOT NULL, ADD tax DOUBLE PRECISION NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE detail DROP ht_price');
$this->addSql('ALTER TABLE invoice DROP tax');
$this->addSql('ALTER TABLE `order` DROP ht_amount, DROP ht_shipping, DROP tax');
}
}