migrations/Version20220831114257.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 Version20220831114257 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 referentiel_perimetre_comptable (id INT AUTO_INCREMENT NOT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at DATETIME DEFAULT NULL, code VARCHAR(190) NOT NULL, UNIQUE INDEX UNIQ_C5A03CC277153098 (code), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE referentiel_plateforme ADD perimetre_comptable_id INT DEFAULT NULL');
  20.         $this->addSql('ALTER TABLE referentiel_plateforme ADD CONSTRAINT FK_8BA1E3E5CC63C340 FOREIGN KEY (perimetre_comptable_id) REFERENCES referentiel_perimetre_comptable (id)');
  21.         $this->addSql('CREATE UNIQUE INDEX UNIQ_8BA1E3E5CC63C340 ON referentiel_plateforme (perimetre_comptable_id)');
  22.     }
  23.     public function down(Schema $schema): void
  24.     {
  25.         // this down() migration is auto-generated, please modify it to your needs
  26.         $this->addSql('ALTER TABLE referentiel_plateforme DROP FOREIGN KEY FK_8BA1E3E5CC63C340');
  27.         $this->addSql('DROP TABLE referentiel_perimetre_comptable');
  28.         $this->addSql('DROP INDEX UNIQ_8BA1E3E5CC63C340 ON referentiel_plateforme');
  29.         $this->addSql('ALTER TABLE referentiel_plateforme DROP perimetre_comptable_id');
  30.     }
  31. }