aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/postgres_schema.sql
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-07-31 16:50:19 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-07-31 16:50:32 -0400
commitc33f97038675c7ca79c8cbb0ece08c989f411c9b (patch)
tree9346a3a632ec910d12dd56e9d8189e58d42bdd85 /phpBB/install/schemas/postgres_schema.sql
parent3264a7ece5cd4b964b854d6d3a1af044e2e70282 (diff)
downloadforums-c33f97038675c7ca79c8cbb0ece08c989f411c9b.tar
forums-c33f97038675c7ca79c8cbb0ece08c989f411c9b.tar.gz
forums-c33f97038675c7ca79c8cbb0ece08c989f411c9b.tar.bz2
forums-c33f97038675c7ca79c8cbb0ece08c989f411c9b.tar.xz
forums-c33f97038675c7ca79c8cbb0ece08c989f411c9b.zip
[feature/oauth] Forgot to update schema files
PHPBB3-11673
Diffstat (limited to 'phpBB/install/schemas/postgres_schema.sql')
-rw-r--r--phpBB/install/schemas/postgres_schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql
index f64f4981d5..14435898eb 100644
--- a/phpBB/install/schemas/postgres_schema.sql
+++ b/phpBB/install/schemas/postgres_schema.sql
@@ -195,7 +195,7 @@ CREATE TABLE phpbb_oauth_tokens (
user_id INT4 DEFAULT '0' NOT NULL CHECK (user_id >= 0),
session_id char(32) DEFAULT '' NOT NULL,
provider varchar(255) DEFAULT '' NOT NULL,
- oauth_token varchar(4000) DEFAULT '' NOT NULL
+ oauth_token TEXT DEFAULT '' NOT NULL
);
CREATE INDEX phpbb_oauth_tokens_user_id ON phpbb_oauth_tokens (user_id);