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/postgres.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/postgres.php')
-rw-r--r-- | phpBB/phpbb/db/tools/postgres.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/tools/postgres.php b/phpBB/phpbb/db/tools/postgres.php index 8b61625c3c..e2a4e668a6 100644 --- a/phpBB/phpbb/db/tools/postgres.php +++ b/phpBB/phpbb/db/tools/postgres.php @@ -30,6 +30,7 @@ class postgres extends tools 'postgres' => array( 'INT:' => 'INT4', 'BINT' => 'INT8', + 'ULINT' => 'INT4', // unsigned 'UINT' => 'INT4', // unsigned 'UINT:' => 'INT4', // unsigned 'USINT' => 'INT2', // unsigned |