Subject: BIGINT as INT in lib/Column.php
Have some problem in framework with using BIGINT digits. If digit more than 2 147 483 647, it returning as (int)2147483647. For fix i maked this:
Change lib/Column.php
static $TYPE_MAPPING = array( ..... 'bigint' => self::INTEGER, ..... );
to:
static $TYPE_MAPPING = array( ..... 'bigint' => self::DECIMAL, ..... );
Dmitry you saved my day. Thanks a lot.
(1-1/1)
June 27 2010
July 20, 2014
Subject: BIGINT as INT in lib/Column.php
Have some problem in framework with using BIGINT digits. If digit more than 2 147 483 647, it returning as (int)2147483647.
For fix i maked this:
Change lib/Column.php
static $TYPE_MAPPING = array(
.....
'bigint' => self::INTEGER,
.....
);
to:
static $TYPE_MAPPING = array(
.....
'bigint' => self::DECIMAL,
.....
);