migrations/Version20200703090226.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 Version20200703090226 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->addSql('ALTER TABLE `legal_entity_order_invoice_manual` ADD COLUMN `comment` TEXT ');
  15.         $this->addSql('CREATE TABLE legal_entity_order_invoice_remark (id INT AUTO_INCREMENT NOT NULL, author_id INT DEFAULT NULL, invoice_id INT DEFAULT NULL, date DATETIME NOT NULL COMMENT \'(DC2Type:carbondatetime)\', contents LONGTEXT NOT NULL, INDEX IDX_5AFC456AF675F31B (author_id), INDEX IDX_5AFC456A2989F1FD (invoice_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB');
  16.         $this->addSql('ALTER TABLE legal_entity_order_invoice_remark ADD CONSTRAINT FK_5AFC456AF675F31B FOREIGN KEY (author_id) REFERENCES security_user (id)');
  17.         $this->addSql('ALTER TABLE legal_entity_order_invoice_remark ADD CONSTRAINT FK_5AFC456A2989F1FD FOREIGN KEY (invoice_id) REFERENCES legal_entity_order_invoice (id)');
  18.     }
  19.     public function down(Schema $schema): void
  20.     {
  21.         // this down() migration is auto-generated, please modify it to your needs
  22.         $this->addSql('ALTER TABLE `legal_entity_order_invoice_manual` DROP COLUMN `comment`');
  23.         $this->addSql('DROP TABLE legal_entity_order_invoice_remark');
  24.     }
  25. }