Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.5 KiB

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\db\sqlite;
use yii\db\ColumnSchemaBuilder as AbstractColumnSchemaBuilder;
/**
* ColumnSchemaBuilder is the schema builder for Sqlite databases.
*
* @author Chris Harris <chris@buckshotsoftware.com>
* @since 2.0.8
*/
class ColumnSchemaBuilder extends AbstractColumnSchemaBuilder
{
/**
* @inheritdoc
*/
protected function buildUnsignedString()
{
return $this->isUnsigned ? ' UNSIGNED' : '';
}
/**
* @inheritdoc
*/
public function __toString()
{
switch ($this->getTypeCategory()) {
case self::CATEGORY_PK:
9 years ago
$format = '{type}{check}';
break;
case self::CATEGORY_NUMERIC:
$format = '{type}{length}{unsigned}{notnull}{unique}{check}{default}';
break;
default:
$format = '{type}{length}{notnull}{unique}{check}{default}';
}
return $this->buildCompleteString($format);
}
/**
* Specify the comment for the column
*
* @param string $comment the comment
* @throws NotSupportedException this is not supported by SQLite
* @since 2.0.8
*/
public function comment($comment)
{
throw new NotSupportedException(__METHOD__ . ' is not supported by SQLite.');
}
/**
* @inheritdoc
*/
protected function buildCommentString()
{
return '';
}
}