Update TagFixture.php

Updated the tag fixture so that it doesn't break `CakeSchema::_arrayDiffAssoc()`
This commit is contained in:
David Yell 2014-08-26 14:53:31 +01:00
parent ff3273d8eb
commit 04a8053af6

View file

@ -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),
);
/**