migrations/2022/08/Version20220811105158.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 Version20220811105158 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 non_member_terms_name VARCHAR(255) DEFAULT NULL, ADD non_member_terms_path VARCHAR(255) DEFAULT NULL, ADD non_member_terms_mime_type VARCHAR(255) DEFAULT NULL, ADD non_member_terms_size INT DEFAULT NULL, ADD non_member_terms_timestamp DATETIME DEFAULT NULL COMMENT \'(DC2Type:carbondatetime)\', ADD member_terms_name VARCHAR(255) DEFAULT NULL, ADD member_terms_path VARCHAR(255) DEFAULT NULL, ADD member_terms_mime_type VARCHAR(255) DEFAULT NULL, ADD member_terms_size INT DEFAULT NULL, ADD member_terms_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 non_member_terms_name, DROP non_member_terms_path, DROP non_member_terms_mime_type, DROP non_member_terms_size, DROP non_member_terms_timestamp, DROP member_terms_name, DROP member_terms_path, DROP member_terms_mime_type, DROP member_terms_size, DROP member_terms_timestamp');
  24.     }
  25. }