migrations/Version20220628145644.php line 1

Open in your IDE?
  1. <?php
    
    declare(strict_types=1);
    
    namespace DoctrineMigrations;
    
    use Doctrine\DBAL\Schema\Schema;
    use Doctrine\Migrations\AbstractMigration;
    
    /**
     * Auto-generated Migration: Please modify to your needs!
     */
    final class Version20220628145644 extends AbstractMigration
    {
        public function getDescription(): string
        {
            return '';
        }
    
        public function up(Schema $schema): void
        {
            // this up() migration is auto-generated, please modify it to your needs
            $this->addSql('CREATE TABLE email_template_email_template_replacement (email_template_id INT NOT NULL, email_template_replacement_id INT NOT NULL, INDEX IDX_95F9403131A730F (email_template_id), INDEX IDX_95F94036B1F748F (email_template_replacement_id), PRIMARY KEY(email_template_id, email_template_replacement_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
            $this->addSql('ALTER TABLE email_template_email_template_replacement ADD CONSTRAINT FK_95F9403131A730F FOREIGN KEY (email_template_id) REFERENCES email_template (id) ON DELETE CASCADE');
            $this->addSql('ALTER TABLE email_template_email_template_replacement ADD CONSTRAINT FK_95F94036B1F748F FOREIGN KEY (email_template_replacement_id) REFERENCES email_template_replacement (id) ON DELETE CASCADE');
        }
    
        public function down(Schema $schema): void
        {
            // this down() migration is auto-generated, please modify it to your needs
            $this->addSql('DROP TABLE email_template_email_template_replacement');
        }
    }