<?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 Version20220811110802 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 non_petroleum_terms_name VARCHAR(255) DEFAULT NULL, ADD non_petroleum_terms_path VARCHAR(255) DEFAULT NULL, ADD non_petroleum_terms_mime_type VARCHAR(255) DEFAULT NULL, ADD non_petroleum_terms_size INT DEFAULT NULL, ADD non_petroleum_terms_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 non_petroleum_terms_name, DROP non_petroleum_terms_path, DROP non_petroleum_terms_mime_type, DROP non_petroleum_terms_size, DROP non_petroleum_terms_timestamp');
}
}