migrations/Version20240912122456.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 Version20240912122456 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql('DROP INDEX uniq_d55937b8f01a3f03604ef57a2832eb1c');
  18.         $this->addSql('ALTER TABLE v2_user_percent ADD ref_type VARCHAR(20) DEFAULT NULL');
  19.         $this->addSql('ALTER TABLE v2_user_percent RENAME COLUMN ins_user_id TO ins_recipient_id');
  20.         $this->addSql('ALTER TABLE v2_user_percent RENAME COLUMN ins_model_id TO ins_source_id');
  21.         $this->addSql('CREATE UNIQUE INDEX UNIQ_D55937B88DC2A8571B9BC8DA2832EB1C9BAD16AE ON v2_user_percent (ins_recipient_id, ins_source_id, reporting_period_id, ref_type)');
  22.     }
  23.     public function down(Schema $schema): void
  24.     {
  25.         $this->addSql('DROP INDEX UNIQ_D55937B88DC2A8571B9BC8DA2832EB1C9BAD16AE');
  26.         $this->addSql('ALTER TABLE v2_user_percent DROP ref_type');
  27.         $this->addSql('ALTER TABLE v2_user_percent RENAME COLUMN ins_recipient_id TO ins_user_id');
  28.         $this->addSql('ALTER TABLE v2_user_percent RENAME COLUMN ins_source_id TO ins_model_id');
  29.         $this->addSql('CREATE UNIQUE INDEX uniq_d55937b8f01a3f03604ef57a2832eb1c ON v2_user_percent (ins_user_id, ins_model_id, reporting_period_id)');
  30.     }
  31. }