<?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 Version20241112042237 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_readonly`, `is_deleted`) VALUES (NULL, 'ROLE_MANAGE_PACKAGE', 'SETTINGS', 'MANAGE_PACKAGE', '1', '0', '0');");
}
public function down(Schema $schema): void
{
$this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` = 'ROLE_MANAGE_PACKAGE';");
}
}