migrations/Version20220603142836.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 Version20220603142836 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 vins_pb_price_quantity (vins_pb_id INT NOT NULL, price_quantity_id INT NOT NULL, INDEX IDX_4B70F3CFFCD9AB2E (vins_pb_id), INDEX IDX_4B70F3CF795206EA (price_quantity_id), PRIMARY KEY(vins_pb_id, price_quantity_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE vins_pb_price_quantity ADD CONSTRAINT FK_4B70F3CFFCD9AB2E FOREIGN KEY (vins_pb_id) REFERENCES vins_pb (id) ON DELETE CASCADE');
  20.         $this->addSql('ALTER TABLE vins_pb_price_quantity ADD CONSTRAINT FK_4B70F3CF795206EA FOREIGN KEY (price_quantity_id) REFERENCES price_quantity (id) ON DELETE CASCADE');
  21.         $this->addSql('ALTER TABLE categorie_vin ADD category_id INT DEFAULT NULL');
  22.         $this->addSql('ALTER TABLE categorie_vin ADD CONSTRAINT FK_9FBF904012469DE2 FOREIGN KEY (category_id) REFERENCES categories (id)');
  23.         $this->addSql('CREATE INDEX IDX_9FBF904012469DE2 ON categorie_vin (category_id)');
  24.         $this->addSql('ALTER TABLE vins_au_verre ADD category_id INT DEFAULT NULL');
  25.         $this->addSql('ALTER TABLE vins_au_verre ADD CONSTRAINT FK_40AE7B0812469DE2 FOREIGN KEY (category_id) REFERENCES categorie_vin (id)');
  26.         $this->addSql('CREATE INDEX IDX_40AE7B0812469DE2 ON vins_au_verre (category_id)');
  27.         $this->addSql('ALTER TABLE vins_pb ADD category_vin_id INT DEFAULT NULL');
  28.         $this->addSql('ALTER TABLE vins_pb ADD CONSTRAINT FK_89C4B2ACB58A0C2A FOREIGN KEY (category_vin_id) REFERENCES categorie_vin (id)');
  29.         $this->addSql('CREATE INDEX IDX_89C4B2ACB58A0C2A ON vins_pb (category_vin_id)');
  30.     }
  31.     public function down(Schema $schema): void
  32.     {
  33.         // this down() migration is auto-generated, please modify it to your needs
  34.         $this->addSql('DROP TABLE vins_pb_price_quantity');
  35.         $this->addSql('ALTER TABLE categorie_vin DROP FOREIGN KEY FK_9FBF904012469DE2');
  36.         $this->addSql('DROP INDEX IDX_9FBF904012469DE2 ON categorie_vin');
  37.         $this->addSql('ALTER TABLE categorie_vin DROP category_id');
  38.         $this->addSql('ALTER TABLE vins_au_verre DROP FOREIGN KEY FK_40AE7B0812469DE2');
  39.         $this->addSql('DROP INDEX IDX_40AE7B0812469DE2 ON vins_au_verre');
  40.         $this->addSql('ALTER TABLE vins_au_verre DROP category_id');
  41.         $this->addSql('ALTER TABLE vins_pb DROP FOREIGN KEY FK_89C4B2ACB58A0C2A');
  42.         $this->addSql('DROP INDEX IDX_89C4B2ACB58A0C2A ON vins_pb');
  43.         $this->addSql('ALTER TABLE vins_pb DROP category_vin_id');
  44.     }
  45. }