migrations/Version20220429103607.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 Version20220429103607 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 email (id INT AUTO_INCREMENT NOT NULL, subject VARCHAR(255) NOT NULL, body LONGTEXT NOT NULL, from_name VARCHAR(255) DEFAULT NULL, add_to LONGTEXT DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE email_email_attachment (email_id INT NOT NULL, email_attachment_id INT NOT NULL, INDEX IDX_DBD5C3D3A832C1C9 (email_id), INDEX IDX_DBD5C3D3F653F523 (email_attachment_id), PRIMARY KEY(email_id, email_attachment_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE email_attachment (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE email_email_attachment ADD CONSTRAINT FK_DBD5C3D3A832C1C9 FOREIGN KEY (email_id) REFERENCES email (id) ON DELETE CASCADE');
  22.         $this->addSql('ALTER TABLE email_email_attachment ADD CONSTRAINT FK_DBD5C3D3F653F523 FOREIGN KEY (email_attachment_id) REFERENCES email_attachment (id) ON DELETE CASCADE');
  23.         $this->addSql('ALTER TABLE action DROP params');
  24.     }
  25.     public function down(Schema $schema): void
  26.     {
  27.         // this down() migration is auto-generated, please modify it to your needs
  28.         $this->addSql('ALTER TABLE email_email_attachment DROP FOREIGN KEY FK_DBD5C3D3A832C1C9');
  29.         $this->addSql('ALTER TABLE email_email_attachment DROP FOREIGN KEY FK_DBD5C3D3F653F523');
  30.         $this->addSql('DROP TABLE email');
  31.         $this->addSql('DROP TABLE email_email_attachment');
  32.         $this->addSql('DROP TABLE email_attachment');
  33.         $this->addSql('ALTER TABLE action ADD params JSON DEFAULT NULL');
  34.     }
  35. }