<?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 Version20250217135654 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("CREATE TABLE `error_activity_log` (
`id` int NOT NULL AUTO_INCREMENT,
`level` varchar(255) NOT NULL,
`message` longtext NOT NULL,
`context` json NOT NULL,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4");
}
public function down(Schema $schema): void
{
$this->addSql("DROP TABLE error_activity_log");
}
}