Skip to content

Commit

Permalink
Update TagFixture.php
Browse files Browse the repository at this point in the history
Updated the tag fixture so that it doesn't break `CakeSchema::_arrayDiffAssoc()`
  • Loading branch information
davidyell committed Aug 26, 2014
1 parent ff3273d commit 04a8053
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Test/Fixture/TagFixture.php
Expand Up @@ -31,8 +31,8 @@ class TagFixture extends CakeTestFixture {
public $fields = array(
'id' => array('type' => 'integer', 'key' => 'primary'),
'tag' => array('type' => 'string', 'null' => false),
'created' => 'datetime',
'updated' => 'datetime'
'created' => array('type' => 'datetime', 'null' => true, 'default' => null),
'updated' => array('type' => 'datetime', 'null' => true, 'default' => null),
);

/**
Expand Down

0 comments on commit 04a8053

Please sign in to comment.