<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20220207112700 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$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')");
$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')");
$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')");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}