migrations/Version20190318074948.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 Version20190318074948 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 non_member_order_reinvoicing_line (id INT AUTO_INCREMENT NOT NULL, order_line_id INT DEFAULT NULL, type VARCHAR(255) NOT NULL, amount INT DEFAULT NULL, param INT DEFAULT NULL, reason VARCHAR(255) DEFAULT NULL, INDEX IDX_D1770C79BB01DC09 (order_line_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB');
  16.         $this->addSql('ALTER TABLE non_member_order_reinvoicing_line ADD CONSTRAINT FK_D1770C79BB01DC09 FOREIGN KEY (order_line_id) REFERENCES non_member_order_line (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 non_member_order_reinvoicing_line');
  23.     }
  24. }