Mark Scherer 11 years ago
parent
commit
5e5316b1ab
1 changed files with 3 additions and 1 deletions
  1. 3 1
      tests/TestCase/Database/Schema/SqliteSchemaTest.php

+ 3 - 1
tests/TestCase/Database/Schema/SqliteSchemaTest.php

@@ -572,7 +572,9 @@ SQL;
         $table = new Table('articles');
         $table->addColumn('id', [
                 'type' => 'integer',
-                'null' => false
+                'null' => false,
+                'length' => 11,
+                'unsigned' => true
             ])
             ->addConstraint('primary', [
                 'type' => 'primary',