migrations/Version20230429083744.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 Version20230429083744 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('CREATE TABLE exercise_simple_answer_result (id INT AUTO_INCREMENT NOT NULL, patient_id INT NOT NULL, exercise_id INT NOT NULL, answer VARCHAR(255) NOT NULL, played_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', kpi_evaluation DOUBLE PRECISION DEFAULT NULL, INDEX IDX_DD2276066B899279 (patient_id), INDEX IDX_DD227606E934951A (exercise_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE patient (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(32) DEFAULT NULL, surname VARCHAR(32) DEFAULT NULL, alexa_id LONGTEXT NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('ALTER TABLE exercise_simple_answer_result ADD CONSTRAINT FK_DD2276066B899279 FOREIGN KEY (patient_id) REFERENCES patient (id)');
  21.         $this->addSql('ALTER TABLE exercise_simple_answer_result ADD CONSTRAINT FK_DD227606E934951A FOREIGN KEY (exercise_id) REFERENCES exercise_simple_answer (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 exercise_simple_answer_result DROP FOREIGN KEY FK_DD2276066B899279');
  27.         $this->addSql('DROP TABLE exercise_simple_answer_result');
  28.         $this->addSql('DROP TABLE patient');
  29.     }
  30. }