Skip to content

Commit 02de356

Browse files
committed
test: update comment
1 parent 5bbf3af commit 02de356

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

tests/_support/Database/Migrations/20160428212500_Create_test_tables.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@ public function up(): void
4646
])->addKey('id', true)->createTable('misc', true);
4747

4848
// Database Type test table
49-
// missing types :
50-
// TINYINT,MEDIUMINT,BIT,YEAR,BINARY , VARBINARY, TINYTEXT,LONGTEXT,YEAR,JSON,Spatial data types
51-
// id must be interger else SQLite3 error on not null for autoinc field
49+
// missing types:
50+
// TINYINT,MEDIUMINT,BIT,YEAR,BINARY,VARBINARY,TINYTEXT,LONGTEXT,
51+
// JSON,Spatial data types
52+
// `id` must be INTEGER else SQLite3 error on not null for autoincrement field.
5253
$data_type_fields = [
5354
'id' => ['type' => 'INTEGER', 'constraint' => 20, 'auto_increment' => true],
5455
'type_varchar' => ['type' => 'VARCHAR', 'constraint' => 40, 'null' => true],

0 commit comments

Comments
 (0)