mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-13 20:59:12 +08:00
29 lines
561 B
PHP
29 lines
561 B
PHP
<?php
|
|
/**
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yii\db\mssql;
|
|
|
|
use yii\db\ColumnSchemaBuilder as AbstractColumnSchemaBuilder;
|
|
|
|
|
|
/**
|
|
* ColumnSchemaBuilder is the schema builder for MSSQL databases.
|
|
*
|
|
* @author Alexander Makarov <sam@rmcreative.ru>
|
|
* @since 2.0.7
|
|
*/
|
|
class ColumnSchemaBuilder extends AbstractColumnSchemaBuilder
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
protected function buildUnsignedString()
|
|
{
|
|
return '';
|
|
}
|
|
}
|