migrations/Version20220115152901.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 Version20220115152901 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 event ADD organization_id INT DEFAULT NULL');
  19.         $this->addSql('ALTER TABLE event ADD CONSTRAINT FK_3BAE0AA732C8A3DE FOREIGN KEY (organization_id) REFERENCES organization (id)');
  20.         $this->addSql('CREATE INDEX IDX_3BAE0AA732C8A3DE ON event (organization_id)');
  21.         $this->addSql('ALTER TABLE offer_job ADD organization_id INT DEFAULT NULL');
  22.         $this->addSql('ALTER TABLE offer_job ADD CONSTRAINT FK_D7ED816032C8A3DE FOREIGN KEY (organization_id) REFERENCES organization (id)');
  23.         $this->addSql('CREATE INDEX IDX_D7ED816032C8A3DE ON offer_job (organization_id)');
  24.         $this->addSql('ALTER TABLE organization ADD code VARCHAR(255) NOT NULL');
  25.         $this->addSql('ALTER TABLE partner ADD organization_id INT DEFAULT NULL');
  26.         $this->addSql('ALTER TABLE partner ADD CONSTRAINT FK_312B3E1632C8A3DE FOREIGN KEY (organization_id) REFERENCES organization (id)');
  27.         $this->addSql('CREATE INDEX IDX_312B3E1632C8A3DE ON partner (organization_id)');
  28.         $this->addSql('ALTER TABLE user ADD organization_id INT DEFAULT NULL');
  29.         $this->addSql('ALTER TABLE user ADD CONSTRAINT FK_8D93D64932C8A3DE FOREIGN KEY (organization_id) REFERENCES organization (id)');
  30.         $this->addSql('CREATE INDEX IDX_8D93D64932C8A3DE ON user (organization_id)');
  31.     }
  32.     public function down(Schema $schema): void
  33.     {
  34.         // this down() migration is auto-generated, please modify it to your needs
  35.         $this->addSql('ALTER TABLE event DROP FOREIGN KEY FK_3BAE0AA732C8A3DE');
  36.         $this->addSql('DROP INDEX IDX_3BAE0AA732C8A3DE ON event');
  37.         $this->addSql('ALTER TABLE event DROP organization_id');
  38.         $this->addSql('ALTER TABLE offer_job DROP FOREIGN KEY FK_D7ED816032C8A3DE');
  39.         $this->addSql('DROP INDEX IDX_D7ED816032C8A3DE ON offer_job');
  40.         $this->addSql('ALTER TABLE offer_job DROP organization_id');
  41.         $this->addSql('ALTER TABLE organization DROP code');
  42.         $this->addSql('ALTER TABLE partner DROP FOREIGN KEY FK_312B3E1632C8A3DE');
  43.         $this->addSql('DROP INDEX IDX_312B3E1632C8A3DE ON partner');
  44.         $this->addSql('ALTER TABLE partner DROP organization_id');
  45.         $this->addSql('ALTER TABLE user DROP FOREIGN KEY FK_8D93D64932C8A3DE');
  46.         $this->addSql('DROP INDEX IDX_8D93D64932C8A3DE ON user');
  47.         $this->addSql('ALTER TABLE user DROP organization_id');
  48.     }
  49. }