migrations/Version20220927160913.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 Version20220927160913 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 api_key_map DROP FOREIGN KEY FK_AA9AC30C54963938');
  19.         $this->addSql('DROP INDEX FK_api_key_map_apis ON api_key_map');
  20.         $this->addSql('ALTER TABLE api_key_map CHANGE api_id endpoind_version_model_id INT DEFAULT NULL');
  21.         $this->addSql('ALTER TABLE api_key_map ADD CONSTRAINT FK_AA9AC30C742222F4 FOREIGN KEY (endpoind_version_model_id) REFERENCES endpoind_version_models (id)');
  22.         $this->addSql('CREATE INDEX IDX_AA9AC30C742222F4 ON api_key_map (endpoind_version_model_id)');
  23.         $this->addSql('ALTER TABLE api_key_map RENAME INDEX fk_api_key_map_api_keys TO IDX_AA9AC30C8BE312B3');
  24.     }
  25.     public function down(Schema $schema): void
  26.     {
  27.         // this down() migration is auto-generated, please modify it to your needs
  28.         $this->addSql('ALTER TABLE api_key_map DROP FOREIGN KEY FK_AA9AC30C742222F4');
  29.         $this->addSql('DROP INDEX IDX_AA9AC30C742222F4 ON api_key_map');
  30.         $this->addSql('ALTER TABLE api_key_map CHANGE endpoind_version_model_id api_id INT DEFAULT NULL');
  31.         $this->addSql('ALTER TABLE api_key_map ADD CONSTRAINT FK_AA9AC30C54963938 FOREIGN KEY (api_id) REFERENCES apis (id)');
  32.         $this->addSql('CREATE INDEX FK_api_key_map_apis ON api_key_map (api_id)');
  33.         $this->addSql('ALTER TABLE api_key_map RENAME INDEX idx_aa9ac30c8be312b3 TO FK_api_key_map_api_keys');
  34.     }
  35. }