migrations/Version20220202194406.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.  * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  10.  */
  11. final class Version20220202194406 extends AbstractMigration
  12. {
  13.     public function getDescription(): string
  14.     {
  15.         return '';
  16.     }
  17.     public function up(Schema $schema): void
  18.     {
  19.         // this up() migration is auto-generated, please modify it to your needs
  20.         $this->addSql('CREATE TABLE mallette_file_notification (id INT AUTO_INCREMENT NOT NULL, mallette_file_id INT NOT NULL, client_id INT NOT NULL, status VARCHAR(255) NOT NULL, date_created DATETIME DEFAULT NULL, date_sent DATETIME DEFAULT NULL, date_modified DATETIME DEFAULT NULL, INDEX IDX_E6314BFD80E9FB39 (mallette_file_id), INDEX IDX_E6314BFD19EB6921 (client_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE mallette_file_notification ADD CONSTRAINT FK_E6314BFD80E9FB39 FOREIGN KEY (mallette_file_id) REFERENCES mallette_file (id)');
  22.         $this->addSql('ALTER TABLE mallette_file_notification ADD CONSTRAINT FK_E6314BFD19EB6921 FOREIGN KEY (client_id) REFERENCES `mallette_client` (id)');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         // this down() migration is auto-generated, please modify it to your needs
  27.         $this->addSql('DROP TABLE mallette_file_notification');
  28.     }
  29.     public function isTransactional(): bool
  30.     {
  31.         return false;
  32.     }
  33. }