This commit is contained in:
Alexander Makarov
2016-06-06 19:57:42 +03:00
parent 0a60466729
commit 7cea46bcb4
3 changed files with 5 additions and 5 deletions

View File

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