migrations/Version20210423092707.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Application\Migrations;
  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 Version20210423092707 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->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  15.         $this->addSql('CREATE TABLE legal_entity_contract_custom_template (id INT AUTO_INCREMENT NOT NULL, contract_id INT DEFAULT NULL, template VARCHAR(255) NOT NULL, enabled TINYINT(1) NOT NULL, path VARCHAR(255) NOT NULL, INDEX IDX_18F669E52576E0FD (contract_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB');
  16.         $this->addSql('ALTER TABLE legal_entity_contract_custom_template ADD CONSTRAINT FK_18F669E52576E0FD FOREIGN KEY (contract_id) REFERENCES legal_entity_contract (id)');
  17.     }
  18.     public function down(Schema $schema): void
  19.     {
  20.         // this down() migration is auto-generated, please modify it to your needs
  21.         $this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  22.         $this->addSql('DROP TABLE legal_entity_contract_custom_template');
  23.     }
  24. }