<?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 Version20220302103452 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("INSERT INTO exam_study_materials (exam_id, url) values (268,'https://talprograms.org/new/wp-content/uploads/2019/05/Shabbos-Reader-II.pdf')");
$this->addSql("INSERT INTO exam_study_materials (exam_id, url) values (212,'https://talprograms.org/new/wp-content/uploads/2019/05/Music-songs-SP.zip')");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}