1
0
www.mikescher.com/framework/db/schema/pgsql/CPgsqlCommandBuilder.php

31 lines
794 B
PHP
Raw Normal View History

2014-05-13 12:40:42 +02:00
<?php
/**
* CPgsqlCommandBuilder class file.
*
* @author Timur Ruziev <resurtm@gmail.com>
* @link http://www.yiiframework.com/
* @copyright 2008-2013 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
/**
* CPgsqlCommandBuilder provides basic methods to create query commands for tables.
*
* @author Timur Ruziev <resurtm@gmail.com>
* @package system.db.schema.pgsql
* @since 1.1.14
*/
class CPgsqlCommandBuilder extends CDbCommandBuilder
{
/**
* Returns default value of the integer/serial primary key. Default value means that the next
* autoincrement/sequence value would be used.
* @return string default value of the integer/serial primary key.
* @since 1.1.14
*/
protected function getIntegerPrimaryKeyDefaultValue()
{
return 'DEFAULT';
}
}