<?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 Version20250130095213 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 tal_invoices
ADD COLUMN usage_total FLOAT NULL AFTER cheshbon_for,
ADD COLUMN reconciliation_total FLOAT NULL AFTER usage_total,
ADD COLUMN payment_total FLOAT NULL AFTER reconciliation_total;");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql("ALTER TABLE tal_invoices
DROP COLUMN usage_total ,
DROP COLUMN reconciliation_total,
DROP COLUMN payment_total;");
}
}