Skip to content

Commit

Permalink
fixing the default values
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmatic69 committed Sep 29, 2012
1 parent b4ff056 commit 66fec46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/Contents/Test/Fixture/GlobalContentFixture.php
Expand Up @@ -26,9 +26,9 @@ class GlobalContentFixture extends CakeTestFixture {
'group_id' => array('type' => 'string', 'null' => false, 'default' => '0', 'length' => 36, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'layout_id' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 36, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'author_id' => array('type' => 'string', 'null' => true, 'default' => null, 'length' => 36, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'author_alias' => array('type' => 'string', 'null' => false, 'default' => '', 'length' => 50, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'author_alias' => array('type' => 'string', 'null' => true, 'default' => null, 'length' => 50, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'editor_id' => array('type' => 'string', 'null' => true, 'default' => null, 'length' => 36, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'editor_alias' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 50, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'editor_alias' => array('type' => 'string', 'null' => true, 'default' => null, 'length' => 50, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'canonical_url' => array('type' => 'text', 'null' => true, 'default' => null, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'canonical_redirect' => array('type' => 'boolean', 'null' => false, 'default' => '1'),
'created' => array('type' => 'datetime', 'null' => true, 'default' => null),
Expand Down

0 comments on commit 66fec46

Please sign in to comment.