Skip to content

Commit

Permalink
more length for fixture fields
Browse files Browse the repository at this point in the history
  • Loading branch information
skalmi committed Apr 4, 2014
1 parent 27dd44e commit 34caab0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .semver
@@ -1,5 +1,5 @@
---
:major: 1
:minor: 0
:patch: 3
:patch: 4
:special: ''
4 changes: 2 additions & 2 deletions Test/Fixture/TaskFixture.php
Expand Up @@ -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'),
Expand Down

0 comments on commit 34caab0

Please sign in to comment.