Files
yii2/framework/db/pgsql/ColumnSchemaBuilder.php
SilverFire - Dmitry Naumenko 0fe27b9d3b Refactored code in PR #9441
2016-04-19 17:48:25 +03:00

28 lines
560 B
PHP

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\db\pgsql;
use yii\db\ColumnSchemaBuilder as AbstractColumnSchemaBuilder;
/**
* ColumnSchemaBuilder is the schema builder for Postgres databases.
*
* @author Vasenin Matvey <vaseninm@gmail.com>
* @since 2.0.6
*/
class ColumnSchemaBuilder extends AbstractColumnSchemaBuilder
{
/**
* @inheritdoc
*/
protected function buildCommentString()
{
return '';
}
}