<?php
declare(strict_types=1);
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20220805143244 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 legal_entity_order_line ADD section_one_dot_two_and_one_dot_four_name VARCHAR(255) DEFAULT NULL, ADD section_one_dot_two_and_one_dot_four_path VARCHAR(255) DEFAULT NULL, ADD section_one_dot_two_and_one_dot_four_mime_type VARCHAR(255) DEFAULT NULL, ADD section_one_dot_two_and_one_dot_four_size INT DEFAULT NULL, ADD section_one_dot_two_and_one_dot_four_timestamp DATETIME DEFAULT NULL COMMENT \'(DC2Type:carbondatetime)\'');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE legal_entity_order_line DROP section_one_dot_two_and_one_dot_four_name, DROP section_one_dot_two_and_one_dot_four_path, DROP section_one_dot_two_and_one_dot_four_mime_type, DROP section_one_dot_two_and_one_dot_four_size, DROP section_one_dot_two_and_one_dot_four_timestamp');
}
}