Doctrine\DBAL\Platforms\OraclePlatform::fixSchemaElementName PHP Method

fixSchemaElementName() public method

{@inheritDoc}
public fixSchemaElementName ( $schemaElementName )
    public function fixSchemaElementName($schemaElementName)
    {
        if (strlen($schemaElementName) > 30) {
            // Trim it
            return substr($schemaElementName, 0, 30);
        }
        return $schemaElementName;
    }
OraclePlatform