<?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 Version20230309101145 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 `exams` DROP INDEX `content_code`;");
$this->addSql("INSERT INTO `exams` (`id`, `vendor_id`, `active`, `phonesystem_active`, `code`, `talCode`, `subject`, `alt1`, `alt2`, `alt3`, `cd_required`, `examLevel`, `secularNumber`, `secularTitle`, `secular`, `duration`, `credits`, `talFee`, `sortOrder`, `talGroupCode`, `content_code`, `group_code`, `program_content_code`, `allowed_resources`, `assignments`, `for_seminary_testing`, `createdOn`, `lastChange`, `lastChangeBy`) VALUES (NULL, '1', '1', '1', NULL, NULL, 'Ivris Elementary Course', NULL, NULL, NULL, '0', 'Lower', 'Hebrew 101:course', NULL, '0', '90', '8', NULL, '0', NULL, 'hebrew101', 'gheb101c', 'heb101c', 'Blank paper allowed, student may choose to write answers on this paper', NULL, '0', '2023-02-03', '2023-02-03', NULL);");}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql("ALTER TABLE `exams` DROP INDEX `content_code`;");
}
}