mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-15 06:40:59 +08:00
22 lines
564 B
PHP
22 lines
564 B
PHP
<?php
|
|
namespace yiiunit\framework\db\oci;
|
|
|
|
use yii\db\oci\ColumnSchemaBuilder;
|
|
use yii\db\Schema;
|
|
use \yiiunit\framework\db\ColumnSchemaBuilderTest as BaseColumnSchemaBuilderTest;
|
|
|
|
/**
|
|
* ColumnSchemaBuilderTest tests ColumnSchemaBuilder for Oracle
|
|
*/
|
|
class ColumnSchemaBuilderTest extends BaseColumnSchemaBuilderTest
|
|
{
|
|
/**
|
|
* @param string $type
|
|
* @param integer $length
|
|
* @return ColumnSchemaBuilder
|
|
*/
|
|
public function getColumnSchemaBuilder($type, $length = null)
|
|
{
|
|
return new ColumnSchemaBuilder($type, $length);
|
|
}
|
|
} |