mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-15 05:45:33 +08:00
Corrected MSSQL driver name. Fixed array addition to not overwrite matching keys.
This commit is contained in:
@@ -15,7 +15,7 @@ class PostgreSQLQueryBuilderTest extends QueryBuilderTest
|
||||
|
||||
public function columnTypes()
|
||||
{
|
||||
return parent::columnTypes() + [
|
||||
return array_merge(parent::columnTypes(), [
|
||||
[
|
||||
Schema::TYPE_BOOLEAN . ' NOT NULL DEFAULT TRUE',
|
||||
$this->boolean()->notNull()->defaultValue(true),
|
||||
@@ -46,7 +46,7 @@ class PostgreSQLQueryBuilderTest extends QueryBuilderTest
|
||||
$this->timestamp(4),
|
||||
'timestamp(4)'
|
||||
],
|
||||
];
|
||||
]);
|
||||
}
|
||||
|
||||
public function conditionProvider()
|
||||
|
||||
Reference in New Issue
Block a user