migrations/Version20220706092236.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 Version20220706092236 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 ticket (id INT AUTO_INCREMENT NOT NULL, type_id INT DEFAULT NULL, urgence_id INT DEFAULT NULL, object VARCHAR(255) DEFAULT NULL, created_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\', status INT DEFAULT NULL, message VARCHAR(255) DEFAULT NULL, msisdn VARCHAR(255) DEFAULT NULL, contract VARCHAR(255) DEFAULT NULL, customer_no VARCHAR(255) DEFAULT NULL, response LONGTEXT DEFAULT NULL, INDEX IDX_97A0ADA3C54C8C93 (type_id), INDEX IDX_97A0ADA3578B7FBD (urgence_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE type_ticket (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE urgence_ticket (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE ticket ADD CONSTRAINT FK_97A0ADA3C54C8C93 FOREIGN KEY (type_id) REFERENCES type_ticket (id)');
  22.         $this->addSql('ALTER TABLE ticket ADD CONSTRAINT FK_97A0ADA3578B7FBD FOREIGN KEY (urgence_id) REFERENCES urgence_ticket (id)');
  23.         $this->addSql('ALTER TABLE msisdn_service ADD response LONGTEXT DEFAULT NULL');
  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 ticket DROP FOREIGN KEY FK_97A0ADA3C54C8C93');
  29.         $this->addSql('ALTER TABLE ticket DROP FOREIGN KEY FK_97A0ADA3578B7FBD');
  30.         $this->addSql('DROP TABLE ticket');
  31.         $this->addSql('DROP TABLE type_ticket');
  32.         $this->addSql('DROP TABLE urgence_ticket');
  33.         $this->addSql('ALTER TABLE msisdn_service DROP response');
  34.     }
  35. }