migrations/Version20241030103332.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  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 Version20241030103332 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('CREATE TABLE form_section (id INT AUTO_INCREMENT NOT NULL, form_id INT NOT NULL, version INT NOT NULL, surveyjs_form_content JSON NOT NULL, description LONGTEXT DEFAULT NULL, options JSON DEFAULT NULL, is_required TINYINT(1) NOT NULL, hash VARCHAR(255) NOT NULL, status INT NOT NULL, is_removed TINYINT(1) NOT NULL, cdate DATETIME NOT NULL, mdate DATETIME DEFAULT NULL, UNIQUE INDEX UNIQ_1C1F1AD4D1B862B8 (hash), INDEX IDX_1C1F1AD45FF69B7D (form_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE taxation_answer (id INT AUTO_INCREMENT NOT NULL, customer_id INT NOT NULL, taxation_form_section_id INT NOT NULL, answers JSON NOT NULL, hash VARCHAR(255) NOT NULL, status INT NOT NULL, is_removed TINYINT(1) NOT NULL, cdate DATETIME NOT NULL, mdate DATETIME DEFAULT NULL, UNIQUE INDEX UNIQ_8211DD16D1B862B8 (hash), INDEX IDX_8211DD169395C3F3 (customer_id), INDEX IDX_8211DD1687D9174 (taxation_form_section_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE taxation_form_section (id INT AUTO_INCREMENT NOT NULL, taxation_id INT NOT NULL, form_section_id INT NOT NULL, version_copy INT NOT NULL, survey_copy JSON NOT NULL, is_required TINYINT(1) NOT NULL, hash VARCHAR(255) NOT NULL, status INT NOT NULL, is_removed TINYINT(1) NOT NULL, cdate DATETIME NOT NULL, mdate DATETIME DEFAULT NULL, UNIQUE INDEX UNIQ_A3E3BA61D1B862B8 (hash), INDEX IDX_A3E3BA612224E81F (taxation_id), INDEX IDX_A3E3BA61D1E4AFEE (form_section_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE form_section ADD CONSTRAINT FK_1C1F1AD45FF69B7D FOREIGN KEY (form_id) REFERENCES form (id)');
  22.         $this->addSql('ALTER TABLE taxation_answer ADD CONSTRAINT FK_8211DD169395C3F3 FOREIGN KEY (customer_id) REFERENCES customer (id)');
  23.         $this->addSql('ALTER TABLE taxation_answer ADD CONSTRAINT FK_8211DD1687D9174 FOREIGN KEY (taxation_form_section_id) REFERENCES taxation_form_section (id)');
  24.         $this->addSql('ALTER TABLE taxation_form_section ADD CONSTRAINT FK_A3E3BA612224E81F FOREIGN KEY (taxation_id) REFERENCES taxation (id)');
  25.         $this->addSql('ALTER TABLE taxation_form_section ADD CONSTRAINT FK_A3E3BA61D1E4AFEE FOREIGN KEY (form_section_id) REFERENCES form_section (id)');
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.         $this->addSql('ALTER TABLE form_section DROP FOREIGN KEY FK_1C1F1AD45FF69B7D');
  31.         $this->addSql('ALTER TABLE taxation_answer DROP FOREIGN KEY FK_8211DD169395C3F3');
  32.         $this->addSql('ALTER TABLE taxation_answer DROP FOREIGN KEY FK_8211DD1687D9174');
  33.         $this->addSql('ALTER TABLE taxation_form_section DROP FOREIGN KEY FK_A3E3BA612224E81F');
  34.         $this->addSql('ALTER TABLE taxation_form_section DROP FOREIGN KEY FK_A3E3BA61D1E4AFEE');
  35.         $this->addSql('DROP TABLE form_section');
  36.         $this->addSql('DROP TABLE taxation_answer');
  37.         $this->addSql('DROP TABLE taxation_form_section');
  38.     }
  39. }