<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Platforms;
use Doctrine\DBAL\Platforms\Keywords\KeywordList;
use Doctrine\DBAL\Platforms\Keywords\MySQLKeywords;
use Doctrine\DBAL\Schema\Index;
use Doctrine\DBAL\Types\BlobType;
use Doctrine\DBAL\Types\TextType;
class MySQLPlatform extends AbstractMySQLPlatform
{
public function getDefaultValueDeclarationSQL(array $column): string
{
if ($column['type'] instanceof TextType || $column['type'] instanceof BlobType) {
unset($column['default']);
}
return parent::getDefaultValueDeclarationSQL($column);
}
protected function getRenameIndexSQL(string $oldIndexName, Index $index, string $tableName): array
{
return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this)];
}
protected function createReservedKeywordsList(): KeywordList