<?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 Version20231212112619 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("update colleges set tal_id = null where name = 'Undecided'");
}
public function down(Schema $schema): void
{
$this->addSql("update colleges set tal_id = 'e3c56dbc-0782-414b-85ef-21cbbe5be2b7' where name = 'Undecided'");
}
}