<?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 Version20230927100910 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("UPDATE exams SET group_code = '8e18835' WHERE vendor_id = 4 AND secularNumber='HES 101'");
$this->addSql("UPDATE exams SET content_code = 'hsc304' WHERE vendor_id = 4 AND secularNumber='HSC 304'");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}