diff options
-rw-r--r-- | phpBB/install/schemas/postgres_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql index 7dc0e2bbd6..831a5382da 100644 --- a/phpBB/install/schemas/postgres_schema.sql +++ b/phpBB/install/schemas/postgres_schema.sql @@ -1233,7 +1233,7 @@ CREATE TABLE phpbb_users_passwd ( user_id INT4 DEFAULT '0' NOT NULL, passwd_time INT4 DEFAULT '0' NOT NULL, passwd varchar(32) DEFAULT '' NOT NULL, - PRIMARY KEY (user_id), + PRIMARY KEY (user_id) ); CREATE INDEX passwd_time_phpbb_users_passwd_index ON phpbb_users_passwd (passwd_time); |