Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Scherer committed May 11, 2015
1 parent 47cad96 commit 5e5316b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/TestCase/Database/Schema/SqliteSchemaTest.php
Expand Up @@ -572,7 +572,9 @@ public function testColumnSqlPrimaryKey()
$table = new Table('articles');
$table->addColumn('id', [
'type' => 'integer',
'null' => false
'null' => false,
'length' => 11,
'unsigned' => true
])
->addConstraint('primary', [
'type' => 'primary',
Expand Down

0 comments on commit 5e5316b

Please sign in to comment.