migrations/Version20230130171730.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 Version20230130171730 extends AbstractMigration
  10. {
  11.     public function up(Schema $schema): void
  12.     {
  13.         // this up() migration is auto-generated, please modify it to your needs
  14.         $this->addSql('CREATE TABLE service_message_campaign (id INT AUTO_INCREMENT NOT NULL, service_id INT NOT NULL, message_id INT NOT NULL, start_date DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', end_date DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', created_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', updated_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', deleted_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\', INDEX IDX_B176F1DDED5CA9E6 (service_id), UNIQUE INDEX UNIQ_B176F1DD537A1329 (message_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  15.         $this->addSql('CREATE TABLE service_message_campaign_recipient (id INT AUTO_INCREMENT NOT NULL, campaign_id INT NOT NULL, message_log_id INT NOT NULL, job_id INT DEFAULT NULL, reply_received_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\', created_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', updated_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', deleted_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\', INDEX IDX_E2C75577F639F774 (campaign_id), UNIQUE INDEX UNIQ_E2C75577DD40C089 (message_log_id), UNIQUE INDEX UNIQ_E2C75577BE04EA9 (job_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  16.         $this->addSql('ALTER TABLE service_message_campaign ADD CONSTRAINT FK_B176F1DDED5CA9E6 FOREIGN KEY (service_id) REFERENCES service (id)');
  17.         $this->addSql('ALTER TABLE service_message_campaign ADD CONSTRAINT FK_B176F1DD537A1329 FOREIGN KEY (message_id) REFERENCES message (id)');
  18.         $this->addSql('ALTER TABLE service_message_campaign_recipient ADD CONSTRAINT FK_E2C75577F639F774 FOREIGN KEY (campaign_id) REFERENCES service_message_campaign (id)');
  19.         $this->addSql('ALTER TABLE service_message_campaign_recipient ADD CONSTRAINT FK_E2C75577DD40C089 FOREIGN KEY (message_log_id) REFERENCES message_log (id)');
  20.         $this->addSql('ALTER TABLE service_message_campaign_recipient ADD CONSTRAINT FK_E2C75577BE04EA9 FOREIGN KEY (job_id) REFERENCES job (id)');
  21.     }
  22.     public function down(Schema $schema): void
  23.     {
  24.         // this down() migration is auto-generated, please modify it to your needs
  25.         $this->addSql('ALTER TABLE service_message_campaign DROP FOREIGN KEY FK_B176F1DDED5CA9E6');
  26.         $this->addSql('ALTER TABLE service_message_campaign DROP FOREIGN KEY FK_B176F1DD537A1329');
  27.         $this->addSql('ALTER TABLE service_message_campaign_recipient DROP FOREIGN KEY FK_E2C75577F639F774');
  28.         $this->addSql('ALTER TABLE service_message_campaign_recipient DROP FOREIGN KEY FK_E2C75577DD40C089');
  29.         $this->addSql('ALTER TABLE service_message_campaign_recipient DROP FOREIGN KEY FK_E2C75577BE04EA9');
  30.         $this->addSql('DROP TABLE service_message_campaign');
  31.         $this->addSql('DROP TABLE service_message_campaign_recipient');
  32.     }
  33. }