migrations/Version20231226104050.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 Version20231226104050 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql('DELETE FROM notification_token');
  18.         $this->addSql('ALTER TABLE notification_token DROP FOREIGN KEY FK_998344C24D2A7E12');
  19.         $this->addSql('DROP INDEX IDX_998344C24D2A7E12 ON notification_token');
  20.         $this->addSql('ALTER TABLE notification_token ADD resident_id INT DEFAULT NULL, DROP building_id');
  21.         $this->addSql('ALTER TABLE notification_token ADD CONSTRAINT FK_998344C28012C5B0 FOREIGN KEY (resident_id) REFERENCES residents (id) ON DELETE CASCADE');
  22.         $this->addSql('CREATE UNIQUE INDEX UNIQ_998344C28012C5B0 ON notification_token (resident_id)');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         $this->addSql('ALTER TABLE notification_token DROP FOREIGN KEY FK_998344C28012C5B0');
  27.         $this->addSql('DROP INDEX UNIQ_998344C28012C5B0 ON notification_token');
  28.         $this->addSql('ALTER TABLE notification_token ADD building_id INT NOT NULL, DROP resident_id');
  29.         $this->addSql('ALTER TABLE notification_token ADD CONSTRAINT FK_998344C24D2A7E12 FOREIGN KEY (building_id) REFERENCES building (id) ON DELETE CASCADE');
  30.         $this->addSql('CREATE INDEX IDX_998344C24D2A7E12 ON notification_token (building_id)');
  31.     }
  32. }