mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 06:15:19 +08:00
Changed SQLite fix #11652 according to https://github.com/yiisoft/yii2/pull/11653#issuecomment-224016289
This commit is contained in:
@ -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',
|
||||
],
|
||||
],
|
||||
[
|
||||
|
Reference in New Issue
Block a user