44 lines
1,007 B
PHP
44 lines
1,007 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Migrations\Db;
|
|
|
|
if (!defined('ABSPATH')) exit;
|
|
|
|
|
|
use MailPoet\Entities\LogEntity;
|
|
use MailPoet\Migrator\DbMigration;
|
|
|
|
class Migration_20230221_200520 extends DbMigration {
|
|
public function run(): void {
|
|
$this->addRawMessagesToLogs();
|
|
$this->addContextToLogs();
|
|
}
|
|
|
|
private function addRawMessagesToLogs() {
|
|
$logsTable = $this->getTableName(LogEntity::class);
|
|
$columnName = 'raw_message';
|
|
|
|
if ($this->columnExists($logsTable, $columnName)) {
|
|
return;
|
|
}
|
|
|
|
$this->connection->executeStatement("
|
|
ALTER TABLE {$logsTable}
|
|
ADD {$columnName} longtext DEFAULT NULL
|
|
");
|
|
}
|
|
|
|
private function addContextToLogs() {
|
|
$logsTable = $this->getTableName(LogEntity::class);
|
|
$columnName = 'context';
|
|
|
|
if ($this->columnExists($logsTable, $columnName)) {
|
|
return;
|
|
}
|
|
|
|
$this->connection->executeStatement("
|
|
ALTER TABLE {$logsTable}
|
|
ADD {$columnName} longtext DEFAULT NULL
|
|
");
|
|
}
|
|
}
|