vendor/bluue/products-bundle/migrations/Version20240911150235.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace ProductsBundleMigrations;
  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 Version20240911150235 extends AbstractMigration
  10. {
  11.     public function up(Schema $schema): void
  12.     {
  13.         $this->addSql('CREATE TABLE products_bundle__product_user (product_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', user_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', INDEX IDX_3D52B2D84584665A (product_id), INDEX IDX_3D52B2D8A76ED395 (user_id), PRIMARY KEY(product_id, user_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  14.         $this->addSql('ALTER TABLE products_bundle__product_user ADD CONSTRAINT FK_3D52B2D84584665A FOREIGN KEY (product_id) REFERENCES products_bundle__product (id)');
  15.         $this->addSql('ALTER TABLE products_bundle__product_user ADD CONSTRAINT FK_3D52B2D8A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  16.     }
  17.     public function down(Schema $schema): void
  18.     {
  19.         $this->addSql('ALTER TABLE products_bundle__product_user DROP FOREIGN KEY FK_3D52B2D84584665A');
  20.         $this->addSql('ALTER TABLE products_bundle__product_user DROP FOREIGN KEY FK_3D52B2D8A76ED395');
  21.         $this->addSql('DROP TABLE products_bundle__product_user');
  22.     }
  23. }