migrations/Version20230210115143.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 Version20230210115143 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 rank DROP FOREIGN KEY FK_8879E8E5190A1B68');
  19.         $this->addSql('ALTER TABLE rank_category DROP FOREIGN KEY FK_830BA59C190A1B68');
  20.         $this->addSql('DROP TABLE corps');
  21.         $this->addSql('DROP TABLE zone');
  22.         $this->addSql('DROP INDEX IDX_8879E8E5190A1B68 ON rank');
  23.         $this->addSql('ALTER TABLE rank DROP corps_id');
  24.         $this->addSql('DROP INDEX IDX_830BA59C190A1B68 ON rank_category');
  25.         $this->addSql('ALTER TABLE rank_category DROP corps_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('CREATE TABLE corps (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  31.         $this->addSql('CREATE TABLE zone (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  32.         $this->addSql('ALTER TABLE rank ADD corps_id INT NOT NULL');
  33.         $this->addSql('ALTER TABLE rank ADD CONSTRAINT FK_8879E8E5190A1B68 FOREIGN KEY (corps_id) REFERENCES corps (id)');
  34.         $this->addSql('CREATE INDEX IDX_8879E8E5190A1B68 ON rank (corps_id)');
  35.         $this->addSql('ALTER TABLE rank_category ADD corps_id INT NOT NULL');
  36.         $this->addSql('ALTER TABLE rank_category ADD CONSTRAINT FK_830BA59C190A1B68 FOREIGN KEY (corps_id) REFERENCES corps (id)');
  37.         $this->addSql('CREATE INDEX IDX_830BA59C190A1B68 ON rank_category (corps_id)');
  38.     }
  39. }