migrations/Version20231227131957.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 Version20231227131957 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql('ALTER TABLE wages DROP CONSTRAINT FK_925439652832EB1C');
  18.         $this->addSql('ALTER TABLE wages DROP COLUMN reporting_period_id');
  19.         $this->addSql('ALTER TABLE wages ADD COLUMN reporting_period_id UUID NOT NULL');
  20.         $this->addSql('COMMENT ON COLUMN wages.reporting_period_id IS \'(DC2Type:uuid)\'');
  21.         $this->addSql(
  22.             'ALTER TABLE wages ADD CONSTRAINT FK_925439652832EB1C FOREIGN KEY (reporting_period_id) REFERENCES v2_reporting_period (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE'
  23.         );
  24.         $this->addSql('ALTER TABLE transactions DROP CONSTRAINT fk_eaa81a4c2832eb1c');
  25.         $this->addSql('DROP INDEX idx_eaa81a4c2832eb1c');
  26.         $this->addSql('ALTER TABLE transactions DROP reporting_period_id');
  27.     }
  28.     public function down(Schema $schema): void
  29.     {
  30.         $this->addSql('ALTER TABLE wages DROP CONSTRAINT FK_925439652832EB1C');
  31.         $this->addSql('ALTER TABLE wages DROP COLUMN reporting_period_id');
  32.         $this->addSql('ALTER TABLE wages ADD COLUMN reporting_period_id INT NOT NULL');
  33.         $this->addSql(
  34.             'ALTER TABLE wages ADD CONSTRAINT FK_925439652832EB1C FOREIGN KEY (reporting_period_id) REFERENCES reporting_periods (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE'
  35.         );
  36.         $this->addSql('ALTER TABLE transactions ADD reporting_period_id INT NOT NULL');
  37.         $this->addSql('ALTER TABLE transactions ADD CONSTRAINT fk_eaa81a4c2832eb1c FOREIGN KEY (reporting_period_id) REFERENCES reporting_periods (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE');
  38.         $this->addSql('CREATE INDEX idx_eaa81a4c2832eb1c ON transactions (reporting_period_id)');
  39.     }
  40.     public function preDown(Schema $schema): void
  41.     {
  42.         $this->connection->executeStatement('DELETE FROM transactions');
  43.         $this->connection->executeStatement('DELETE FROM wages');
  44.     }
  45.     public function preUp(Schema $schema): void
  46.     {
  47.         $this->connection->executeStatement('DELETE FROM transactions');
  48.         $this->connection->executeStatement('DELETE FROM wages');
  49.     }
  50. }