Skip to content

Commit

Permalink
Fix big int lengths on SQLserver
Browse files Browse the repository at this point in the history
SQLserver big ints aren't as big as other database servers.
  • Loading branch information
markstory committed Aug 30, 2012
1 parent d4ee62b commit e64f5f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Fixture/DatatypeFixture.php
Expand Up @@ -49,6 +49,6 @@ class DatatypeFixture extends CakeTestFixture {
* @var array
*/
public $records = array(
array('id' => 1, 'float_field' => 42.23, 'huge_int' => '123456789123456789123456789', 'bool' => 0),
array('id' => 1, 'float_field' => 42.23, 'huge_int' => '1234567891234567891', 'bool' => 0),
);
}

0 comments on commit e64f5f1

Please sign in to comment.