<?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 Version20250615054504 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql("ALTER TABLE `registrations` ADD COLUMN `vendor_approved_retake_with_fee` TINYINT NULL DEFAULT NULL AFTER `vendor_approved_retake`;");
$this->addSql("INSERT INTO `chargeTypes` (`id`,`description`, `expanded_description`, `additional_fee_included`) VALUES ('6','Retake and proctor fee', 'Exam retake and proctor fee', '1');");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql("ALTER TABLE `registrations` DROP COLUMN `vendor_approved_retake_with_fee`;");
$this->addSql('DELETE FROM chargeTypes WHERE id = 6');
}
}