<?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 Version202204180902610Prefactura_Comprobante extends AbstractMigration
{
public function getDescription(): string
{
return 'set new user actions';
}
public function up(Schema $schema): void
{
$this->addSql("ALTER TABLE virtus_honos.prefactura_detalle ADD prefactura_comprobante varchar(255) NULL");
$this->addSql("ALTER TABLE virtus_honos.prefactura_detalle ADD updated_at DATE NULL");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}