Corrected tests

This commit is contained in:
Bizley
2020-04-08 15:29:54 +02:00
parent 0210a5cbb0
commit 0643ef312d

View File

@ -942,7 +942,7 @@ abstract class QueryBuilderTest extends DatabaseTestCase
[
'mysql' => 'int(10) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY',
'postgres' => 'serial NOT NULL PRIMARY KEY',
'sqlite' => 'integer UNSIGNED PRIMARY KEY AUTOINCREMENT NOT NULL',
'sqlite' => 'integer PRIMARY KEY AUTOINCREMENT NOT NULL',
],
],
[
@ -951,7 +951,7 @@ abstract class QueryBuilderTest extends DatabaseTestCase
[
'mysql' => 'bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY',
'postgres' => 'bigserial NOT NULL PRIMARY KEY',
'sqlite' => 'integer UNSIGNED PRIMARY KEY AUTOINCREMENT NOT NULL',
'sqlite' => 'integer PRIMARY KEY AUTOINCREMENT NOT NULL',
],
],
[