src/Migrations/Version20201025202301.php line 1

  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 Version20201025202301 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 university_category_relation (organisation_id INT NOT NULL, university_category_id INT NOT NULL, INDEX IDX_EFBAC27D9E6B1585 (organisation_id), INDEX IDX_EFBAC27D21D6F15 (university_category_id), PRIMARY KEY(organisation_id, university_category_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE university_category_relation ADD CONSTRAINT FK_EFBAC27D9E6B1585 FOREIGN KEY (organisation_id) REFERENCES organisation (id) ON DELETE CASCADE');
  20.         $this->addSql('ALTER TABLE university_category_relation ADD CONSTRAINT FK_EFBAC27D21D6F15 FOREIGN KEY (university_category_id) REFERENCES university_categories (id) ON DELETE CASCADE');
  21.         $this->addSql('DROP TABLE university_category_organisation');
  22.         $this->addSql('ALTER TABLE organisation CHANGE have_dorm have_dorm TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE have_military_department have_military_department TINYINT(1) DEFAULT \'0\' NOT NULL');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         // this down() migration is auto-generated, please modify it to your needs
  27.         $this->addSql('CREATE TABLE university_category_organisation (university_category_id INT NOT NULL, organisation_id INT NOT NULL, INDEX IDX_19341E849E6B1585 (organisation_id), INDEX IDX_19341E8421D6F15 (university_category_id), PRIMARY KEY(university_category_id, organisation_id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  28.         $this->addSql('ALTER TABLE university_category_organisation ADD CONSTRAINT FK_19341E8421D6F15 FOREIGN KEY (university_category_id) REFERENCES university_categories (id) ON DELETE CASCADE');
  29.         $this->addSql('ALTER TABLE university_category_organisation ADD CONSTRAINT FK_19341E849E6B1585 FOREIGN KEY (organisation_id) REFERENCES organisation (id) ON DELETE CASCADE');
  30.         $this->addSql('DROP TABLE university_category_relation');
  31.         $this->addSql('ALTER TABLE organisation CHANGE have_dorm have_dorm TINYINT(1) NOT NULL, CHANGE have_military_department have_military_department TINYINT(1) NOT NULL');
  32.     }
  33. }