migrations/Version20240108204415.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 Version20240108204415 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 bewerking (id INT AUTO_INCREMENT NOT NULL, naam VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE onderdeel ADD bewerking_id INT DEFAULT NULL');
  20.         $this->addSql('ALTER TABLE onderdeel ADD CONSTRAINT FK_A2B676ECCD929E5C FOREIGN KEY (bewerking_id) REFERENCES bewerking (id)');
  21.         $this->addSql('CREATE INDEX IDX_A2B676ECCD929E5C ON onderdeel (bewerking_id)');
  22.         $this->addSql('ALTER TABLE orderonderdeel ADD bewerking_id INT DEFAULT NULL');
  23.         $this->addSql('ALTER TABLE orderonderdeel ADD CONSTRAINT FK_6D8ED13DCD929E5C FOREIGN KEY (bewerking_id) REFERENCES bewerking (id)');
  24.         $this->addSql('CREATE INDEX IDX_6D8ED13DCD929E5C ON orderonderdeel (bewerking_id)');
  25.     }
  26.     public function down(Schema $schema): void
  27.     {
  28.         // this down() migration is auto-generated, please modify it to your needs
  29.         $this->addSql('ALTER TABLE onderdeel DROP FOREIGN KEY FK_A2B676ECCD929E5C');
  30.         $this->addSql('ALTER TABLE orderonderdeel DROP FOREIGN KEY FK_6D8ED13DCD929E5C');
  31.         $this->addSql('DROP TABLE bewerking');
  32.         $this->addSql('DROP INDEX IDX_6D8ED13DCD929E5C ON orderonderdeel');
  33.         $this->addSql('ALTER TABLE orderonderdeel DROP bewerking_id');
  34.         $this->addSql('DROP INDEX IDX_A2B676ECCD929E5C ON onderdeel');
  35.         $this->addSql('ALTER TABLE onderdeel DROP bewerking_id');
  36.     }
  37. }