migrations/Version20211116204832.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.  * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  10.  */
  11. final class Version20211116204832 extends AbstractMigration
  12. {
  13.     public function getDescription(): string
  14.     {
  15.         return '';
  16.     }
  17.     public function up(Schema $schema): void
  18.     {
  19.         // this up() migration is auto-generated, please modify it to your needs
  20.         $this->addSql('CREATE TABLE client_group (client_id INT NOT NULL, group_id INT NOT NULL, INDEX IDX_CEADD87219EB6921 (client_id), INDEX IDX_CEADD872FE54D947 (group_id), PRIMARY KEY(client_id, group_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE client_group ADD CONSTRAINT FK_CEADD87219EB6921 FOREIGN KEY (client_id) REFERENCES `mallette_client` (id) ON DELETE CASCADE');
  22.         $this->addSql('ALTER TABLE client_group ADD CONSTRAINT FK_CEADD872FE54D947 FOREIGN KEY (group_id) REFERENCES `mallette_group` (id) ON DELETE CASCADE');
  23.         $this->addSql('DROP TABLE group_client');
  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('CREATE TABLE group_client (group_id INT NOT NULL, client_id INT NOT NULL, INDEX IDX_14C2DC8519EB6921 (client_id), INDEX IDX_14C2DC85FE54D947 (group_id), PRIMARY KEY(group_id, client_id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  29.         $this->addSql('ALTER TABLE group_client ADD CONSTRAINT FK_14C2DC8519EB6921 FOREIGN KEY (client_id) REFERENCES mallette_client (id) ON UPDATE NO ACTION ON DELETE CASCADE');
  30.         $this->addSql('ALTER TABLE group_client ADD CONSTRAINT FK_14C2DC85FE54D947 FOREIGN KEY (group_id) REFERENCES mallette_group (id) ON UPDATE NO ACTION ON DELETE CASCADE');
  31.         $this->addSql('DROP TABLE client_group');
  32.     }
  33.     public function isTransactional(): bool
  34.     {
  35.         return false;
  36.     }
  37. }