<?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 Version20240904131217 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 system_settings ADD benzene_questionnaire_template_name VARCHAR(255) DEFAULT NULL, ADD benzene_questionnaire_template_path VARCHAR(255) DEFAULT NULL, ADD benzene_questionnaire_template_mime_type VARCHAR(255) DEFAULT NULL, ADD benzene_questionnaire_template_size INT DEFAULT NULL, ADD benzene_questionnaire_template_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 system_settings DROP benzene_questionnaire_template_name, DROP benzene_questionnaire_template_path, DROP benzene_questionnaire_template_mime_type, DROP benzene_questionnaire_template_size, DROP benzene_questionnaire_template_timestamp');
}
}