From 04a8053af6e87754117085d7520a63ad4772521d Mon Sep 17 00:00:00 2001 From: David Yell Date: Tue, 26 Aug 2014 14:53:31 +0100 Subject: [PATCH] Update TagFixture.php Updated the tag fixture so that it doesn't break `CakeSchema::_arrayDiffAssoc()` --- lib/Cake/Test/Fixture/TagFixture.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Cake/Test/Fixture/TagFixture.php b/lib/Cake/Test/Fixture/TagFixture.php index 3ab1c5139c4..d69825f0a86 100644 --- a/lib/Cake/Test/Fixture/TagFixture.php +++ b/lib/Cake/Test/Fixture/TagFixture.php @@ -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), ); /**