Skip to content

Commit

Permalink
Allow level field to be null for pqsql and sqlite.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Feb 15, 2015
1 parent e095885 commit 204f50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Fixture/NumberTreeFixture.php
Expand Up @@ -38,6 +38,6 @@ class NumberTreeFixture extends CakeTestFixture {
'parent_id' => 'integer',
'lft' => array('type' => 'integer', 'null' => false),
'rght' => array('type' => 'integer', 'null' => false),
'level' => array('type' => 'integer', 'null' => false)
'level' => array('type' => 'integer', 'null' => true)
);
}

0 comments on commit 204f50b

Please sign in to comment.