diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-01-18 23:29:41 +0100 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-01-18 23:29:41 +0100 |
commit | 39c9baa574646e807ec1768907c674791e922f27 (patch) | |
tree | ec307d05b384bba6538e0eb8762230b995c170a7 /phpBB/phpbb/db/tools/mssql.php | |
parent | bcc5eac7ddc7dd61cab389ff31788571e92cede3 (diff) | |
parent | a94c20faa24cd450d697efa65be837075ec3cceb (diff) | |
download | forums-39c9baa574646e807ec1768907c674791e922f27.tar forums-39c9baa574646e807ec1768907c674791e922f27.tar.gz forums-39c9baa574646e807ec1768907c674791e922f27.tar.bz2 forums-39c9baa574646e807ec1768907c674791e922f27.tar.xz forums-39c9baa574646e807ec1768907c674791e922f27.zip |
Merge pull request #4121 from marc1706/ticket/11875
[ticket/11875] Use 4-byte integer instead of 3-byte integer for ID columns
* marc1706/ticket/11875:
[ticket/11875] Add back new line
[ticket/11875] Change more columns to use UINT and add missings ones
[ticket/11875] Add migration file
[ticket/11875] Recreate schemas for install
[ticket/11875] Create new map for UNSIGNED 4-byte integer
[ticket/11875] Upgrade default data type from MEDIUMINT to INT
Diffstat (limited to 'phpBB/phpbb/db/tools/mssql.php')
-rw-r--r-- | phpBB/phpbb/db/tools/mssql.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/tools/mssql.php b/phpBB/phpbb/db/tools/mssql.php index 6e58171040..a90a85bbb2 100644 --- a/phpBB/phpbb/db/tools/mssql.php +++ b/phpBB/phpbb/db/tools/mssql.php @@ -36,6 +36,7 @@ class mssql extends tools 'mssql' => array( 'INT:' => '[int]', 'BINT' => '[float]', + 'ULINT' => '[int]', 'UINT' => '[int]', 'UINT:' => '[int]', 'TINT:' => '[int]', @@ -66,6 +67,7 @@ class mssql extends tools 'mssqlnative' => array( 'INT:' => '[int]', 'BINT' => '[float]', + 'ULINT' => '[int]', 'UINT' => '[int]', 'UINT:' => '[int]', 'TINT:' => '[int]', |