migrations/2024/09/Version20240904131217.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Application\Migrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20240904131217 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $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)\'');
  19.     }
  20.     public function down(Schema $schema): void
  21.     {
  22.         // this down() migration is auto-generated, please modify it to your needs
  23.         $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');
  24.     }
  25. }