将 TINYINT 添加到 Doctrine SQL 类型

问题描述 投票:0回答:2

按照 Symfony 文档,我尝试添加

TINYINT
作为实体列类型。

到目前为止,效果很好,但仍然存在两个问题......

  1. 每次我想要执行迁移时,Doctrine 都无法重新识别

    TINYINT
    关联的列,并再次执行迁移查询。

  2. 在表单构建器中,默认情况下

    TINYINT
    被识别为
    TextType
    而不是
    NumberType

你知道我缺少什么来解决这两个问题吗?

TinyintType.php

use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\Type;

class TinyintType extends Type {
    const TINYINT='tinyint';

    /**
     * @return string
     */
    public function getName() {
        return self::TINYINT;
    }

    /**
     * @param array $fieldDeclaration
     * @param AbstractPlatform $platform
     * @return string
     */
    public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) {
        return $fieldDeclaration['unsigned'] === true ? 'TINYINT(1) UNSIGNED' : 'TINYINT(1)';
    }

    public function canRequireSQLConversion() {
        return true;
    }

    /**
     * @param $value
     * @param AbstractPlatform $platform
     * @return int|null
     */
    public function convertToPHPValue($value, AbstractPlatform $platform) {
        return $value === null ? null : (int)$value;
    }

    /**
     * @param mixed $value
     * @param AbstractPlatform $platform
     * @return int|mixed|null
     */
    public function convertToDatabaseValue($value, AbstractPlatform $platform) {
        return $value === null ? null : (int)$value;
    }

    /**
     * @return int
     */
    public function getBindingType() {
        return ParameterType::INTEGER;
    }
}

doctrine.yaml

doctrine:
    dbal:
        url: '%env(resolve:DATABASE_URL)%'
        server_version: '5.7'
        types:
            tinyint: 'App\Doctrine\DBAL\Types\TinyintType'
    orm:
        auto_generate_proxy_classes: true
        naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
        auto_mapping: true
        mappings:
            App:
                is_bundle: false
                type: annotation
                dir: '%kernel.project_dir%/src/Entity'
                prefix: 'App\Entity'
                alias: App
php symfony doctrine dbal
2个回答
3
投票

第一期:来自https://blog.vandenbrand.org/2015/06/25/creating-a-custom-doctrine-dbal-type-the-right-way/

解决方案是在存储元数据的字段中添加注释 文档中似乎缺少此内容,但我找到了一些 JIRA 描述该功能的问题。我们必须更改列定义 所以类型的元数据不会丢失

所以你的 getSQLDeclaration 应该是这样的:

public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
{
    return 'TINYINT'.(!empty($fieldDeclaration['unsigned']) ? ' UNSIGNED' : '').' COMMENT \'(DC2Type:tinyint)\'';
}

第二个问题:那是因为,默认情况下symfony表单使用文本类型(symfony/form/FormBuilder.php::create

if (null === $type && null === $this->getDataClass()) {
    $type = 'Symfony\Component\Form\Extension\Core\Type\TextType';
}

如果您想设置其他类型,则应该明确设置您的类型。


3
投票

虽然接受的答案中的信息没问题,但我错过了在此处复制和粘贴的解决方案,所以就在这里。

类型声明:

<?php

namespace AppBundle\Doctrine;

use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\SmallIntType;

class TinyintType extends SmallIntType
{
    public function getSQLDeclaration(array $column, AbstractPlatform $platform)
    {
        return 'TINYINT' . (!empty($column['unsigned']) ? ' UNSIGNED' : '');
    }


    public function requiresSQLCommentHint(AbstractPlatform $platform)
    {
        return true;
    }

    public function getName()
    {
        return 'tinyint';
    }
}

并在初始化代码中的某处输入注册:

\Doctrine\DBAL\Types\Type::addType('tinyint', TinyintType::class);
© www.soinside.com 2019 - 2024. All rights reserved.