<?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 Version20240906120505 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_questionnaire_benzene ADD upload_name VARCHAR(255) DEFAULT NULL, ADD upload_path VARCHAR(255) DEFAULT NULL, ADD upload_mime_type VARCHAR(255) DEFAULT NULL, ADD upload_size INT DEFAULT NULL, ADD upload_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_questionnaire_benzene DROP upload_name, DROP upload_path, DROP upload_mime_type, DROP upload_size, DROP upload_timestamp');
}
}