mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Fix big int lengths on SQLserver
SQLserver big ints aren't as big as other database servers.
This commit is contained in:
parent
d4ee62be61
commit
e64f5f15e2
1 changed files with 1 additions and 1 deletions
|
@ -49,6 +49,6 @@ class DatatypeFixture extends CakeTestFixture {
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
public $records = 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),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue