aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-10-13 11:37:22 +0200
committerMarc Alexander <admin@m-a-styles.de>2013-10-13 12:06:02 +0200
commit0f64843ac82ad49e02392459e62fdc1c5e92477c (patch)
tree36c8d5a0cd73f9b86dae26132cd42ffd6204463a /phpBB/install/schemas
parent1d57ec1f65246c98d6fe47eb50ab297cb772d1c5 (diff)
downloadforums-0f64843ac82ad49e02392459e62fdc1c5e92477c.tar
forums-0f64843ac82ad49e02392459e62fdc1c5e92477c.tar.gz
forums-0f64843ac82ad49e02392459e62fdc1c5e92477c.tar.bz2
forums-0f64843ac82ad49e02392459e62fdc1c5e92477c.tar.xz
forums-0f64843ac82ad49e02392459e62fdc1c5e92477c.zip
[feature/passwords] Use VCHAR_UNI instead of VCHAR_CI for user_passwords
PHPBB3-11610
Diffstat (limited to 'phpBB/install/schemas')
-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 d152b750dd..c1eabdf1ee 100644
--- a/phpBB/install/schemas/postgres_schema.sql
+++ b/phpBB/install/schemas/postgres_schema.sql
@@ -1246,7 +1246,7 @@ CREATE TABLE phpbb_users (
user_regdate INT4 DEFAULT '0' NOT NULL CHECK (user_regdate >= 0),
username varchar_ci DEFAULT '' NOT NULL,
username_clean varchar_ci DEFAULT '' NOT NULL,
- user_password varchar_ci DEFAULT '' NOT NULL,
+ user_password varchar(255) DEFAULT '' NOT NULL,
user_passchg INT4 DEFAULT '0' NOT NULL CHECK (user_passchg >= 0),
user_pass_convert INT2 DEFAULT '0' NOT NULL CHECK (user_pass_convert >= 0),
user_email varchar(100) DEFAULT '' NOT NULL,