migrations/Version20220203160712.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 Version20220203160712 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_app_user (mallette_file_notification_id INT NOT NULL, app_user_id INT NOT NULL, INDEX IDX_7B3A1A86990EB3A1 (mallette_file_notification_id), INDEX IDX_7B3A1A864A3353D8 (app_user_id), PRIMARY KEY(mallette_file_notification_id, app_user_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE mallette_file_notification_app_user ADD CONSTRAINT FK_7B3A1A86990EB3A1 FOREIGN KEY (mallette_file_notification_id) REFERENCES mallette_file_notification (id) ON DELETE CASCADE');
  22.         $this->addSql('ALTER TABLE mallette_file_notification_app_user ADD CONSTRAINT FK_7B3A1A864A3353D8 FOREIGN KEY (app_user_id) REFERENCES eckinox_app_users (id) ON DELETE CASCADE');
  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_app_user');
  28.         $this->addSql('ALTER TABLE mallette_file_notification CHANGE status status VARCHAR(255) NOT NULL COLLATE `utf8mb4_unicode_ci`');
  29.     }
  30.     public function isTransactional(): bool
  31.     {
  32.         return false;
  33.     }
  34. }