diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2016-01-13 13:19:32 +0100 | 
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2016-01-13 13:21:08 +0100 | 
| commit | 192a5f19f4d2f8aba4798815848d23558462df70 (patch) | |
| tree | e296a2ed09f846a2248ac8fae6f8f84e1af53045 /phpBB/phpbb/db/tools/postgres.php | |
| parent | 08647781c09849843cc30fd5e36f9dafa02faf6e (diff) | |
| parent | 7696f39ac3ecb803468f230129a76dac59f2972b (diff) | |
| download | forums-192a5f19f4d2f8aba4798815848d23558462df70.tar forums-192a5f19f4d2f8aba4798815848d23558462df70.tar.gz forums-192a5f19f4d2f8aba4798815848d23558462df70.tar.bz2 forums-192a5f19f4d2f8aba4798815848d23558462df70.tar.xz forums-192a5f19f4d2f8aba4798815848d23558462df70.zip | |
Merge pull request #2064 from hjpotter92/ticket/11875
[ticket/11875] Set default data type from MEDIUMINT (3byte) to INT(10) (4byte)
Conflicts:
	phpBB/includes/db/schema_data.php
	phpBB/install/schemas/mysql_40_schema.sql
	phpBB/install/schemas/mysql_41_schema.sql
	phpBB/install/schemas/oracle_schema.sql
	phpBB/install/schemas/postgres_schema.sql
	phpBB/phpbb/db/tools/tools.php
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 | 
