migrations/Version20240508135548.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 Version20240508135548 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 cotation DROP FOREIGN KEY FK_996DA944726FC894');
  19.         $this->addSql('DROP INDEX IDX_996DA944726FC894 ON cotation');
  20.         $this->addSql('ALTER TABLE cotation ADD patient_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', ADD created_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', ADD deleted_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\', DROP patient_prescription_id');
  21.         $this->addSql('ALTER TABLE cotation ADD CONSTRAINT FK_996DA9446B899279 FOREIGN KEY (patient_id) REFERENCES `patient` (id)');
  22.         $this->addSql('CREATE INDEX IDX_996DA9446B899279 ON cotation (patient_id)');
  23.         // add chronic default value to 1
  24.         $this->addSql('ALTER TABLE patient ADD chronic TINYINT(1) NOT NULL DEFAULT 1, ADD type_billing INT NOT NULL DEFAULT 1, ADD office_care TINYINT(1) NOT NULL DEFAULT 0');
  25.     }
  26.     public function down(Schema $schema): void
  27.     {
  28.         // this down() migration is auto-generated, please modify it to your needs
  29.         $this->addSql('ALTER TABLE cotation DROP FOREIGN KEY FK_996DA9446B899279');
  30.         $this->addSql('DROP INDEX IDX_996DA9446B899279 ON cotation');
  31.         $this->addSql('ALTER TABLE cotation ADD patient_prescription_id INT NOT NULL, DROP patient_id, DROP created_at, DROP deleted_at');
  32.         $this->addSql('ALTER TABLE cotation ADD CONSTRAINT FK_996DA944726FC894 FOREIGN KEY (patient_prescription_id) REFERENCES patient_prescription (id)');
  33.         $this->addSql('CREATE INDEX IDX_996DA944726FC894 ON cotation (patient_prescription_id)');
  34.         $this->addSql('ALTER TABLE `patient` DROP chronic, DROP type_billing, DROP office_care');
  35.     }
  36. }