migrations/Version20220510152131.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 Version20220510152131 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('ALTER TABLE invoice DROP INDEX UNIQ_9065174499C772A6, ADD INDEX IDX_9065174499C772A6 (visa_id)');
  19.         $this->addSql('DROP INDEX UNIQ_B81291B96901F54 ON lot');
  20.         $this->addSql('ALTER TABLE lot ADD ces SMALLINT DEFAULT NULL, ADD sdp SMALLINT DEFAULT NULL, ADD si SMALLINT DEFAULT NULL');
  21.         $this->addSql('ALTER TABLE visa DROP INDEX IDX_16B1AB0862A10F76, ADD UNIQUE INDEX UNIQ_16B1AB0862A10F76 (instruction_id)');
  22.     }
  23.     public function down(Schema $schema): void
  24.     {
  25.         // this down() migration is auto-generated, please modify it to your needs
  26.         $this->addSql('ALTER TABLE invoice DROP INDEX IDX_9065174499C772A6, ADD UNIQUE INDEX UNIQ_9065174499C772A6 (visa_id)');
  27.         $this->addSql('ALTER TABLE lot DROP ces, DROP sdp, DROP si');
  28.         $this->addSql('CREATE UNIQUE INDEX UNIQ_B81291B96901F54 ON lot (number)');
  29.         $this->addSql('ALTER TABLE visa DROP INDEX UNIQ_16B1AB0862A10F76, ADD INDEX IDX_16B1AB0862A10F76 (instruction_id)');
  30.     }
  31. }