Jsor\Doctrine\PostGIS\Schema\CreateTableSqlGenerator::getColumnComment PHP Method

getColumnComment() protected method

Full replacement of Doctrine\DBAL\Platforms\AbstractPlatform::getColumnComment, check on updates!
protected getColumnComment ( Doctrine\DBAL\Schema\Column $column )
$column Doctrine\DBAL\Schema\Column
    protected function getColumnComment(Column $column)
    {
        $comment = $column->getComment();
        if ($this->platform->isCommentedDoctrineType($column->getType())) {
            $comment .= $this->platform->getDoctrineTypeComment($column->getType());
        }
        return $comment;
    }