diff --git a/.semver b/.semver index f2cbca4..157668d 100644 --- a/.semver +++ b/.semver @@ -1,5 +1,5 @@ --- :major: 1 :minor: 0 -:patch: 3 +:patch: 4 :special: '' \ No newline at end of file diff --git a/Test/Fixture/TaskFixture.php b/Test/Fixture/TaskFixture.php index 150549a..ed0f463 100644 --- a/Test/Fixture/TaskFixture.php +++ b/Test/Fixture/TaskFixture.php @@ -18,14 +18,14 @@ class TaskFixture extends CakeTestFixture { 'server_id' => array('type' => 'biginteger', 'null' => false, 'default' => '0', 'length' => 20), 'command' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 500, 'collate' => 'utf8_general_ci'), 'path' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 500, 'collate' => 'utf8_general_ci'), - 'arguments' => array('type' => 'string', 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'), + 'arguments' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 1000, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'), 'hash' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 100, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'), 'status' => array('type' => 'integer', 'null' => false, 'default' => null, 'length' => 3, 'collate' => 'utf8_general_ci'), 'code' => array('type' => 'integer', 'null' => false, 'default' => '0', 'length' => 10), 'code_string' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 500, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'), 'stdout' => array('type' => 'string', 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'), 'stderr' => array('type' => 'string', 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'), - 'details' => array('type' => 'string', 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'), + 'details' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 1000, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'), 'timeout' => array('type' => 'integer', 'null' => false, 'default' => '0', 'length' => 10, 'collate' => 'utf8_general_ci'), 'scheduled' => array('type' => 'datetime'), 'started' => array('type' => 'datetime'),