<?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 Version20201106162411 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->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('CREATE TABLE resource_dep_email_template (resource_id INT NOT NULL, email_template_id INT NOT NULL, INDEX IDX_26B6B63389329D25 (resource_id), INDEX IDX_26B6B633131A730F (email_template_id), PRIMARY KEY(resource_id, email_template_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE resource_dep_email_template ADD CONSTRAINT FK_26B6B63389329D25 FOREIGN KEY (resource_id) REFERENCES resource (id) ON DELETE CASCADE');
$this->addSql('ALTER TABLE resource_dep_email_template ADD CONSTRAINT FK_26B6B633131A730F FOREIGN KEY (email_template_id) REFERENCES email_template (id) ON DELETE CASCADE');
}
public function down(Schema $schema) : void
{
// this down() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('DROP TABLE resource_dep_email_template');
}
}