migrations/Version20201026143548.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 Version20201026143548 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('ALTER TABLE legal_entity_active_definition ADD steps JSON NOT NULL');
  16.         $this->addSql('
  17.             UPDATE legal_entity_active_definition SET
  18.                 ec_id = NULL, petroleum_origin = NULL, ec_description_matches = NULL, from_refinery_stream = NULL, 
  19.                 match_boundary_sips = NULL, uses_listed_in_map = NULL, tonnage_band = NULL, cin = NULL, uscc = NULL,
  20.                 clp_completed = NULL, sip_completed = NULL, importer = NULL, manufacturer = NULL, lead_registrant = NULL,
  21.                 include_license = NULL, solvent_use = NULL, uses_advised_against = NULL, steps = "[]"
  22.             WHERE 1
  23.         ');
  24.     }
  25.     public function down(Schema $schema): void
  26.     {
  27.         // this down() migration is auto-generated, please modify it to your needs
  28.         $this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  29.         $this->addSql('ALTER TABLE legal_entity_active_definition DROP steps');
  30.     }
  31. }