migrations/Version20220415094827.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 Version20220415094827 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 widget_user_widget (widget_user_id UUID NOT NULL, widget_id UUID NOT NULL, PRIMARY KEY(widget_user_id, widget_id))');
  19. $this->addSql('CREATE INDEX IDX_DEB18F61A941D454 ON widget_user_widget (widget_user_id)');
  20. $this->addSql('CREATE INDEX IDX_DEB18F61FBE885E2 ON widget_user_widget (widget_id)');
  21. $this->addSql('COMMENT ON COLUMN widget_user_widget.widget_user_id IS \'(DC2Type:uuid)\'');
  22. $this->addSql('COMMENT ON COLUMN widget_user_widget.widget_id IS \'(DC2Type:uuid)\'');
  23. $this->addSql('ALTER TABLE widget_user_widget ADD CONSTRAINT FK_DEB18F61A941D454 FOREIGN KEY (widget_user_id) REFERENCES widget_user (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE');
  24. $this->addSql('ALTER TABLE widget_user_widget ADD CONSTRAINT FK_DEB18F61FBE885E2 FOREIGN KEY (widget_id) REFERENCES widget (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE');
  25. }
  26. public function down(Schema $schema): void
  27. {
  28. // this down() migration is auto-generated, please modify it to your needs
  29. $this->addSql('CREATE SCHEMA public');
  30. $this->addSql('DROP TABLE widget_user_widget');
  31. }
  32. }