<?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 Version20240911073424 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("UPDATE `dp_levels` SET `level_name` = 'ASSEMBLY' WHERE `dp_levels`.`level_id` = 18");
$this->addSql("UPDATE `tc_user_type` SET `type_title` = 'Administrator' WHERE `tc_user_type`.`id` = 2");
}
public function down(Schema $schema): void
{
$this->addSql("UPDATE `dp_levels` SET `level_name` = 'ASSY' WHERE `dp_levels`.`level_id` = 18");
$this->addSql("UPDATE `tc_user_type` SET `type_title` = 'Adminstrator' WHERE `tc_user_type`.`id` = 2");
}
}