mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-13 12:49:04 +08:00
28 lines
560 B
PHP
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 '';
|
|
}
|
|
}
|