diff options
| author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-31 16:33:54 -0400 | 
|---|---|---|
| committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-31 16:34:07 -0400 | 
| commit | 3264a7ece5cd4b964b854d6d3a1af044e2e70282 (patch) | |
| tree | ebc168e4e0dfed7cae4f0341f0b4c7eef2823446 | |
| parent | aa80ac44a4f4f84d0fc41fa0218cc7d7140c3df0 (diff) | |
| download | forums-3264a7ece5cd4b964b854d6d3a1af044e2e70282.tar forums-3264a7ece5cd4b964b854d6d3a1af044e2e70282.tar.gz forums-3264a7ece5cd4b964b854d6d3a1af044e2e70282.tar.bz2 forums-3264a7ece5cd4b964b854d6d3a1af044e2e70282.tar.xz forums-3264a7ece5cd4b964b854d6d3a1af044e2e70282.zip  | |
[feature/oauth] Attempt to fix postgres issue
PHPBB3-11673
| -rw-r--r-- | phpBB/develop/create_schema_files.php | 2 | ||||
| -rw-r--r-- | phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index a722a88ff3..b634c236b0 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -928,7 +928,7 @@ function get_schema_struct()  			'user_id'			=> array('UINT', 0), // phpbb_users.user_id  			'session_id'		=> array('CHAR:32', ''), // phpbb_sessions.session_id used only when user_id not set  			'provider'			=> array('VCHAR', ''), // Name of the OAuth provider -			'oauth_token'		=> array('TEXT_UNI', ''), // Serialized token +			'oauth_token'		=> array('MTEXT', ''), // Serialized token  		),  		'KEYS' => array(  			'user_id'			=> array('INDEX', 'user_id'), diff --git a/phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php b/phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php index 5e3fa919e8..07541c7eac 100644 --- a/phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php +++ b/phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php @@ -23,7 +23,7 @@ class phpbb_db_migration_data_310_auth_provider_oauth extends phpbb_db_migration  						'user_id'			=> array('UINT', 0), // phpbb_users.user_id  						'session_id'		=> array('CHAR:32', ''), // phpbb_sessions.session_id used only when user_id not set  						'provider'			=> array('VCHAR', ''), // Name of the OAuth provider -						'oauth_token'		=> array('TEXT_UNI'), // Serialized token +						'oauth_token'		=> array('MTEXT', ''), // Serialized token  					),  					'KEYS' => array(  						'user_id'			=> array('INDEX', 'user_id'),  | 
