Corrected MSSQL driver name. Fixed array addition to not overwrite matching keys.

This commit is contained in:
Chris Harris
2016-02-26 12:44:20 -08:00
parent 3eecb79420
commit 91018f6c38
7 changed files with 72 additions and 72 deletions

View File

@@ -17,7 +17,7 @@ class MysqlQueryBuilderTest extends QueryBuilderTest
*/
public function columnTypes()
{
return parent::columnTypes() + [
return array_merge(parent::columnTypes(), [
[
Schema::TYPE_PK . ' AFTER (`col_before`)',
$this->primaryKey()->after('col_before'),
@@ -48,6 +48,6 @@ class MysqlQueryBuilderTest extends QueryBuilderTest
$this->primaryKey(8)->first()->after('col_before'),
'int(8) NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST'
],
];
]);
}
}