migrations/Version20220207112700.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 Version20220207112700 extends AbstractMigration
  10. {
  11. public function getDescription(): string
  12. {
  13. return '';
  14. }
  15. public function up(Schema $schema): void
  16. {
  17. $this->addSql("INSERT INTO exam_study_materials(exam_id, display_name, url) values (262,'Computer Basics in Healthcare','https://www.dropbox.com/sh/jt68478znhhy9me/AAB7ByefiAKEZCyntXliQrVRa?dl=0')");
  18. $this->addSql("INSERT INTO exam_study_materials(exam_id, display_name, url) values (257,'Motor Development','https://www.dropbox.com/sh/q7j18el75i8a6b2/AABbGIpjEn3h5qH85TzH9PNSa?dl=0')");
  19. $this->addSql("INSERT INTO exam_study_materials(exam_id, display_name, url) values (263,'Pathophysiology and Pharmacology','https://www.dropbox.com/sh/h24gwpfmul0imr7/AADakjhritNtbMaNeZy9uqIya?dl=0')");
  20. }
  21. public function down(Schema $schema): void
  22. {
  23. // this down() migration is auto-generated, please modify it to your needs
  24. }
  25. }