Neos\Flow\Persistence\Doctrine\DataTypes\JsonArrayType::getMappedDatabaseTypes PHP 메소드

getMappedDatabaseTypes() 공개 메소드

We map jsonb fields to our datatype by default. Doctrine doesn't use jsonb at all.
public getMappedDatabaseTypes ( Doctrine\DBAL\Platforms\AbstractPlatform $platform ) : array
$platform Doctrine\DBAL\Platforms\AbstractPlatform
리턴 array
    public function getMappedDatabaseTypes(AbstractPlatform $platform)
    {
        return ['jsonb'];
    }